Skip to content

Commit 9639606

Browse files
more rounds of pseudo-random data
1 parent ececa07 commit 9639606

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

theta/test/bit_packing_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static const uint64_t IGOLDEN64 = 0x9e3779b97f4a7c13ULL;
3030

3131
TEST_CASE("pack unpack bits") {
3232
uint64_t value = 0xaa55aa55aa55aa55ULL; // arbitrary starting value
33-
for (int m = 0; m < 100; ++m) {
33+
for (int m = 0; m < 10000; ++m) {
3434
for (uint8_t bits = 1; bits <= 63; ++bits) {
3535
int n = 8;
3636
const uint64_t mask = (1ULL << bits) - 1;
@@ -61,7 +61,7 @@ TEST_CASE("pack unpack bits") {
6161

6262
TEST_CASE("pack unpack blocks") {
6363
uint64_t value = 0xaa55aa55aa55aa55ULL; // arbitrary starting value
64-
for (int n = 0; n < 100; ++n) {
64+
for (int n = 0; n < 10000; ++n) {
6565
for (uint8_t bits = 1; bits <= 63; ++bits) {
6666
const uint64_t mask = (1ULL << bits) - 1;
6767
std::vector<uint64_t> input(8, 0);

0 commit comments

Comments
 (0)