Skip to content

Commit 1a8011f

Browse files
Use average instead of sum
1 parent 085cde4 commit 1a8011f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/profiler_nsys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
if row:
1919
full_name = row[8]
2020
instances = int(row[2])
21-
time = float(row[1])
21+
time = float(row[3])
2222
sigma = float(row[7])
2323
if len(full_name) > 5 and full_name[:5] == "krnl_":
2424
name = full_name[5:]

0 commit comments

Comments
 (0)