| 1062 | |
| 1063 | template<> |
| 1064 | AFAPI void *array::device() const { |
| 1065 | void *ptr = nullptr; |
| 1066 | AF_THROW(af_get_device_ptr(&ptr, get())); |
| 1067 | return ptr; |
| 1068 | } |
| 1069 | |
| 1070 | // array_proxy instanciations |
| 1071 | #define TEMPLATE_MEM_FUNC(TYPE, RETURN_TYPE, FUNC) \ |
nothing calls this directly
no test coverage detected