File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
projects/rocprofiler-sdk/source/bin Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -936,8 +936,7 @@ def parse_input(input_file):
936936
937937 _ , extension = os .path .splitext (input_file )
938938 if extension == ".txt" or extension == ".text" :
939- warning (
940- """
939+ warning ("""
941940 Text file format for counter collection is deprecated and will be removed in a future release.
942941 Please use JSON or YAML format instead.
943942
@@ -954,8 +953,7 @@ def parse_input(input_file):
954953
955954 JSON file (recommended):
956955 {"jobs":[{"pmc": ["SQ_WAVES"]},{ "pmc":["GRBM_COUNT"]}]}
957- """
958- )
956+ """ )
959957 text_input = parse_text (input_file )
960958 text_input_lst = [{"pmc" : itr , "sub_directory" : "pmc_" } for itr in text_input ]
961959 return [dotdict (itr ) for itr in text_input_lst ]
You can’t perform that action at this time.
0 commit comments