| 28 | } |
| 29 | |
| 30 | af_err afcu_set_native_id(int nativeid) { |
| 31 | af_backend backend; |
| 32 | af_get_active_backend(&backend); |
| 33 | if (backend == AF_BACKEND_CUDA) { CALL(afcu_set_native_id, nativeid); } |
| 34 | return AF_ERR_NOT_SUPPORTED; |
| 35 | } |
| 36 | |
| 37 | af_err afcu_cublasSetMathMode(cublasMath_t mode) { |
| 38 | af_backend backend; |
no test coverage detected