SWDEV-430460: Updated readme and fixed att.csv being generated only on current dir.

Change-Id: I81522a79e61ff0f35f74035b48ff594d7a05a424


[ROCm/rocprofiler commit: 9e625eb58a]
Этот коммит содержится в:
Giovanni LB
2023-11-10 06:07:42 -03:00
родитель a88e4c9d34
Коммит 2d3edde2a4
2 изменённых файлов: 17 добавлений и 9 удалений
+4 -1
Просмотреть файл
@@ -8,7 +8,10 @@ def dump_csv(code, trace_instance_name):
outpath = os.getenv("OUT_FILE_NAME")
if outpath is None:
outpath = "att_output"
outpath += '_' + trace_instance_name.split('/')[-1] + '.csv'
elif os.path.dirname(outpath) != '':
os.makedirs(os.path.dirname(outpath), exist_ok=True)
outpath += '_' + os.path.basename(trace_instance_name) + '.csv'
with open(outpath, 'w') as f:
writer = csv.writer(f)