Profiling mmap files #746
-
|
Hello there! Should we activate some special flags to activate mmap profiling? Thank you very much in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi! First of all, apologies for taking so long to get back to you. This got lost in my email and I'm not accustomed to checking our discussions channel like our issues/PRs. As I recall, we disable our tracking of If it's any consolation, we only track the number of |
Beta Was this translation helpful? Give feedback.
Hi!
First of all, apologies for taking so long to get back to you. This got lost in my email and I'm not accustomed to checking our discussions channel like our issues/PRs.
As I recall, we disable our tracking of
mmap()usage (we just mark the counters as-1as you see) inside our shared library due to some bad interactions with some other libraries we've seen on Cray systems in the past. We do still collect the info for statically-linked executables, but looks like your system is dynamically linking.If it's any consolation, we only track the number of
mmap()calls issued to each file. We do not have any way of tracking how much data is accessed viammap(), offsets accessed, etc., so the…