File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -508,11 +508,21 @@ int64_t div_up(const int64_t a, const int64_t b) {
508
508
return (a + b - 1 ) / b;
509
509
}
510
510
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
+
511
516
int64_t rnd_up (const int64_t a, const int64_t b) {
512
517
SAFE_V (b != 0 ? OK : FAIL);
513
518
return div_up (a, b) * b;
514
519
}
515
520
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
+
516
526
int64_t next_pow2 (int64_t a) {
517
527
assert (a > 0 && a <= ((int64_t )1 << 62 ));
518
528
if (a > 1 ) a--;
Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ int batch(const char *fname, bench_f bench);
175
175
int flip_coin (ptrdiff_t seed, float probability);
176
176
177
177
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);
178
179
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);
179
181
int64_t next_pow2 (int64_t a);
180
182
int mxcsr_cvt (float f);
181
183
You can’t perform that action at this time.
0 commit comments