Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
goplanid committed Mar 12, 2024
1 parent 4a543b3 commit f1cee6a
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions driver/others/blas_server_win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,12 +608,9 @@ void goto_set_num_threads(int num_threads)
SetEvent(kickoff_event);

for (i = num_threads - 1; i < blas_num_threads - 1; i++) {
//printf("set_num_threads: waiting on thread [%d] to quit.\n", i);

WaitForSingleObject(blas_threads[i], INFINITE);

//printf("set_num_threads: thread [%d] has quit.\n", i);

CloseHandle(blas_threads[i]);
}

Expand Down Expand Up @@ -641,8 +638,6 @@ void goto_set_num_threads(int num_threads)
}

for(i = (blas_num_threads > 0) ? blas_num_threads - 1 : 0; i < num_threads - 1; i++){
//printf("set_num_threads: creating thread [%d]\n", i);

blas_threads[i] = CreateThread(NULL, 0,
blas_thread_server, (void *)i,
0, &blas_threads_id[i]);
Expand Down

0 comments on commit f1cee6a

Please sign in to comment.