You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

blas_server_callback.c 417 B

123456789101112
  1. #include "common.h"
  2. /* global variable to change threading backend from openblas-managed to caller-managed */
  3. openblas_threads_callback openblas_threads_callback_ = 0;
  4. /* non-threadsafe function should be called before any other
  5. openblas function to change how threads are managed */
  6. void openblas_set_threads_callback_function(openblas_threads_callback callback)
  7. {
  8. openblas_threads_callback_ = callback;
  9. }