From cb337997dbe42e5e956b9f885e2500ec6c6f9482 Mon Sep 17 00:00:00 2001 From: Evgeny Date: Mon, 22 Jun 2020 17:27:55 -0500 Subject: [PATCH] tblext.py fixing: 'stream_ind' not-inintialized python issue; app START time message; Change-Id: Ib17c49daf7c118aa83025d805d707bf3d8e1c88f [ROCm/rocprofiler commit: 708edfe989eab513c2971df856b1e430fccd679b] --- projects/rocprofiler/bin/tblextr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocprofiler/bin/tblextr.py b/projects/rocprofiler/bin/tblextr.py index 945be6a874..baff8eb24d 100755 --- a/projects/rocprofiler/bin/tblextr.py +++ b/projects/rocprofiler/bin/tblextr.py @@ -566,7 +566,7 @@ begin_ts_file = indir + '/begin_ts_file.txt' if os.path.isfile(begin_ts_file): with open(begin_ts_file, mode='r') as fd: START_US=int(fd.readline()) / 1000 - print('Appilcation START-ts found (' + START_US + 'us)') + print('Appilcation START-ts found (' + str(START_US) + 'us)') if re.search(r'\.csv$', outfile): csvfile = outfile