Skip to content
Snippets Groups Projects
Commit 184d8dd6 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Fixed visc timing calculations in python script

parent 09a9401f
No related branches found
No related tags found
No related merge requests found
...@@ -278,8 +278,8 @@ def time_options(progname, cmd, args): ...@@ -278,8 +278,8 @@ def time_options(progname, cmd, args):
timings[label_f]['Copy Scalar Arguments'] = addTime([(label_ptx, 'Copy_Scalar')], timings) timings[label_f]['Copy Scalar Arguments'] = addTime([(label_ptx, 'Copy_Scalar')], timings)
timings[label_f]['WorkGroup Size Calculation'] = addTime([(label_ptx, 'Misc')], timings) timings[label_f]['WorkGroup Size Calculation'] = addTime([(label_ptx, 'Misc')], timings)
timings[label_f]['Kernel'] = addTime([(label_ptx, 'Kernel')], timings) timings[label_f]['Kernel'] = addTime([(label_ptx, 'Kernel')], timings)
timings[label_f]['Read Output'] = addTime([(label_ptx, 'Read_Output'), (label_pb, 'Mem_Untrack')], timings) timings[label_f]['Read Output'] = addTime([(label_ptx, 'Read_Output'), (label_pb, 'Copy')], timings)
timings[label_f]['Free Memory'] = addTime([(label_ptx, 'Mem_Free')], timings) timings[label_f]['Free Memory'] = addTime([(label_ptx, 'Mem_Free'), (label_ptx, 'Mem_Untrack')], timings)
timings[label_f]['Clear Context'] = addTime([(label_ptx, 'Clear_Ctx')], timings) timings[label_f]['Clear Context'] = addTime([(label_ptx, 'Clear_Ctx')], timings)
else: else:
if len(timings) == 1: if len(timings) == 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment