Skip to content

Commit

Permalink
bytes_and_flops: fix a counter name
Browse files Browse the repository at this point in the history
one "i" was not correctly replaced by "iter".
  • Loading branch information
cedricchevalier19 committed Mar 5, 2024
1 parent 4dcbff2 commit fa25749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/bytes_and_flops/bench_unroll_stride.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct Run<Scalar, UNROLL, STRIDE> {
#endif
}
#if (UNROLL == 1)
C(n, i, 0) = a1;
C(n, iter, 0) = a1;
#endif
#if (UNROLL == 2)
C(n, iter, 0) = a1 + a2;
Expand Down

0 comments on commit fa25749

Please sign in to comment.