increase nthreads to 96

This commit is contained in:
Martin Kroeker 2020-04-08 01:04:40 +02:00 committed by GitHub
parent aa8269d472
commit 29a50dd048
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ void launch_cblas_dgemm(double* A, double* B, double* C, const blasint randomMat
int main(int argc, char* argv[]){ int main(int argc, char* argv[]){
blasint randomMatSize = 1024; //dimension of the random square matrices used blasint randomMatSize = 1024; //dimension of the random square matrices used
uint32_t numConcurrentThreads = 52; //number of concurrent calls of the functions being tested uint32_t numConcurrentThreads = 96; //number of concurrent calls of the functions being tested
uint32_t numTestRounds = 16; //number of testing rounds before success exit uint32_t numTestRounds = 16; //number of testing rounds before success exit
if (argc > 4){ if (argc > 4){