Update dgemv_thread_safety.cpp

This commit is contained in:
Martin Kroeker 2020-04-10 12:45:39 +02:00 committed by GitHub
parent 82375a5a14
commit 5048090862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ int main(int argc, char* argv[]){
uint32_t numTestRounds = 16; //number of testing rounds before success exit uint32_t numTestRounds = 16; //number of testing rounds before success exit
uint32_t maxHwThreads = omp_get_max_threads(); uint32_t maxHwThreads = omp_get_max_threads();
if (maxHwThreads() < 52) if (maxHwThreads < 52)
numConcurrentThreads = maxHwThreads -4; numConcurrentThreads = maxHwThreads -4;
if (argc > 4){ if (argc > 4){