Skip to content

Commit a20e32c

Browse files
committed
benchdnn: add size_t overload for rnd_up
1 parent 8393e5c commit a20e32c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

tests/benchdnn/common.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -508,11 +508,21 @@ int64_t div_up(const int64_t a, const int64_t b) {
508508
return (a + b - 1) / b;
509509
}
510510

511+
size_t div_up(const size_t a, const size_t b) {
512+
SAFE_V(b != 0 ? OK : FAIL);
513+
return (a + b - 1) / b;
514+
}
515+
511516
int64_t rnd_up(const int64_t a, const int64_t b) {
512517
SAFE_V(b != 0 ? OK : FAIL);
513518
return div_up(a, b) * b;
514519
}
515520

521+
size_t rnd_up(const size_t a, const size_t b) {
522+
SAFE_V(b != 0 ? OK : FAIL);
523+
return div_up(a, b) * b;
524+
}
525+
516526
int64_t next_pow2(int64_t a) {
517527
assert(a > 0 && a <= ((int64_t)1 << 62));
518528
if (a > 1) a--;

tests/benchdnn/common.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ int batch(const char *fname, bench_f bench);
175175
int flip_coin(ptrdiff_t seed, float probability);
176176

177177
int64_t div_up(const int64_t a, const int64_t b);
178+
size_t div_up(const size_t a, const size_t b);
178179
int64_t rnd_up(const int64_t a, const int64_t b);
180+
size_t rnd_up(const size_t a, const size_t b);
179181
int64_t next_pow2(int64_t a);
180182
int mxcsr_cvt(float f);
181183

0 commit comments

Comments
 (0)