Regularizing the data type for variables that use the problem size to be int64_t

This commit is contained in:
Wes Bethel 2022-10-25 05:31:22 -07:00
parent 760ae0cc77
commit f4df0d4ffc

View File

@ -34,7 +34,7 @@ int main(int argc, char** argv)
int n_problems = problem_sizes.size();
/* For each test size */
for (int n : problem_sizes)
for (int64_t n : problem_sizes)
{
printf("Working on problem size N=%d \n", n);