Skip to content

Commit 4bf3156

Browse files
author
Vasileios Karakasis
authored
Merge pull request #1651 from jjotero/test/ault
[test] Fix GPU burn test output
2 parents f26b735 + bb7370a commit 4bf3156

File tree

1 file changed

+1
-1
lines changed
  • cscs-checks/microbenchmarks/gpu/gpu_burn/src

1 file changed

+1
-1
lines changed

cscs-checks/microbenchmarks/gpu/gpu_burn/src/gpu_burn.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public:
265265

266266
// Get the time difference and return the flops
267267
std::chrono::duration<double> diff = end-start;
268-
double Gflops = 1e-9 * iters * reps * OPS_PER_MUL * diff.count();
268+
double Gflops = 1e-9 * iters * reps * OPS_PER_MUL / diff.count();
269269

270270
// Reset the counters
271271
err = 0; reps = 0;

0 commit comments

Comments
 (0)