Regularizing the data type for variables that use the problem size to be int64_t
This commit is contained in:
parent
760ae0cc77
commit
f4df0d4ffc
@ -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);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user