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.
|
- #include "common.h"
-
- /* global variable to change threading backend from openblas-managed to caller-managed */
- openblas_threads_callback openblas_threads_callback_ = 0;
-
- /* non-threadsafe function should be called before any other
- openblas function to change how threads are managed */
-
- void openblas_set_threads_callback_function(openblas_threads_callback callback)
- {
- openblas_threads_callback_ = callback;
- }
|