Skip to content

Commit

Permalink
Update bench.h
Browse files Browse the repository at this point in the history
  • Loading branch information
joanaxcruz authored and blapie committed Aug 29, 2024
1 parent abbc3ae commit 93f04d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libm-benchmarks/bench.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
for(int j=0;j<ITER;j++) { \
type_in *p = (type_in *)(arg); \
for(int i=0;i<N;i++){ \
out = funcName(*p++); \
__attribute__((unused)) type_out out = funcName(*p++); \
} \
} \
uint64_t t1 = Sleef_currentTimeMicros(); \
Expand All @@ -26,7 +26,7 @@
for(int j=0;j<ITER;j++) { \
type_in *p1 = (type_in *)(arg1), *p2 = (type_in *)(arg2); \
for(int i=0;i<N;i++){ \
out = funcName(*p1++, *p2++); \
__attribute__((unused)) type_out out = funcName(*p1++, *p2++); \
} \
} \
uint64_t t1 = Sleef_currentTimeMicros(); \
Expand Down

0 comments on commit 93f04d8

Please sign in to comment.