You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resource utilization is revealed in detail e.g. per resource slot (index) in the matplotlib figure png file but it doesn't seem to have enough information in the stats file. Values in the stats are elapsed seconds of particular metrics e.g. Execution Cmd, Draining, which are important for TTX calculation. What I am interested in, however, is to see how many resources e.g. CPU cores are busy versus idle in a given time. Right now, I manually divide the core seconds of Execution Cmd from the stats file by allocated number of cores to produce a percentage. I believe provided and consumed would be sufficient to be added in the stat file for more information on resource utilization.
The text was updated successfully, but these errors were encountered:
Those dicts contain rather fine grained information about what unit or pilot utilized what core for what reason. This is an internal data structure, so it's not well documented - but you may want to dump them with pprint and have a look. If that is what you are looking for, I can add some documentation (the method needs that anyway...).
returnprovided, consumed, stats_abs, stats_rel, info
and I thought two return values, provided and consumed from get_provided_resources and get_consumed_resources might be good to be added in the stat
file.
The information in them is usually too voluminous to be printed in detail - those basically contain (IIRC) tuples like [core_start, core_end, time_start, time_end] for each and every activity in the pilot, so way to much to present in detail. But out of those numbers, you should be able to write a script which does the additions for the data you are interested in?
Resource utilization is revealed in detail e.g. per resource slot (index) in the matplotlib figure png file but it doesn't seem to have enough information in the
stats
file. Values in the stats are elapsed seconds of particular metrics e.g. Execution Cmd, Draining, which are important for TTX calculation. What I am interested in, however, is to see how many resources e.g. CPU cores are busy versus idle in a given time. Right now, I manually divide the core seconds of Execution Cmd from thestats
file by allocated number of cores to produce a percentage. I believeprovided
andconsumed
would be sufficient to be added in thestat
file for more information on resource utilization.The text was updated successfully, but these errors were encountered: