SWDEV-430460: Updated readme and fixed att.csv being generated only on current dir.
Change-Id: I81522a79e61ff0f35f74035b48ff594d7a05a424
[ROCm/rocprofiler commit: 9e625eb58a]
Этот коммит содержится в:
@@ -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)
|
||||
|
||||
Ссылка в новой задаче
Block a user