We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ececa07 commit 9639606Copy full SHA for 9639606
1 file changed
theta/test/bit_packing_test.cpp
@@ -30,7 +30,7 @@ static const uint64_t IGOLDEN64 = 0x9e3779b97f4a7c13ULL;
30
31
TEST_CASE("pack unpack bits") {
32
uint64_t value = 0xaa55aa55aa55aa55ULL; // arbitrary starting value
33
- for (int m = 0; m < 100; ++m) {
+ for (int m = 0; m < 10000; ++m) {
34
for (uint8_t bits = 1; bits <= 63; ++bits) {
35
int n = 8;
36
const uint64_t mask = (1ULL << bits) - 1;
@@ -61,7 +61,7 @@ TEST_CASE("pack unpack bits") {
61
62
TEST_CASE("pack unpack blocks") {
63
64
- for (int n = 0; n < 100; ++n) {
+ for (int n = 0; n < 10000; ++n) {
65
66
67
std::vector<uint64_t> input(8, 0);
0 commit comments