Minor code cleanup

This commit is contained in:
Wes Bethel 2022-10-26 19:35:08 -07:00
parent f4df0d4ffc
commit 05d36a361e

View File

@ -23,8 +23,6 @@ int main(int argc, char** argv)
{
std::cout << std::fixed << std::setprecision(2);
std::vector<int> test_sizes{64, 128, 256, 512, 1024, 2048};
#define MAX_PROBLEM_SIZE 1 << 28 // 256M
std::vector<int64_t> problem_sizes{ MAX_PROBLEM_SIZE >> 5, MAX_PROBLEM_SIZE >> 4, MAX_PROBLEM_SIZE >> 3, MAX_PROBLEM_SIZE >> 2, MAX_PROBLEM_SIZE >> 1, MAX_PROBLEM_SIZE};