File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
source/utils/profiler/scripts Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 4
4
import textwrap
5
5
import os
6
6
7
- parser = argparse .ArgumentParser (
8
- description = "ADIOS json file parser inputs"
9
- )
7
+ parser = argparse .ArgumentParser (description = "ADIOS json file parser inputs" )
10
8
11
9
TAGS = {
12
10
"input_dir" : "dataDir" , # key name for input direcory is "dataDir"
13
- "rank" : "whichRank" , # which rank to peek profile
14
- "out" : "plotPrefix" , # for output file name
15
- "showfig" : "showFig" , # call plt.show or not
11
+ "rank" : "whichRank" , # which rank to peek profile
12
+ "out" : "plotPrefix" , # for output file name
13
+ "showfig" : "showFig" , # call plt.show or not
16
14
"attr" : "jsonAttr" , # key refer to specific json attr
17
15
# the "zeroif" key refers to a min number to be treated as 0.
18
16
# will process data until first rank <= this value is spotted
19
17
"zero" : "zeroIf" ,
20
- "level" : "levelAxis"
18
+ "level" : "levelAxis" ,
21
19
}
22
20
23
21
TAGS_DEFAULT = {
You can’t perform that action at this time.
0 commit comments