| 137 | } |
| 138 | |
| 139 | void freePinned(const void *ptr) { |
| 140 | // FIXME: look up map and call the right free |
| 141 | AF_THROW(af_free_pinned((void *)ptr)); |
| 142 | } |
| 143 | |
| 144 | void *allocHost(const size_t elements, const af::dtype type) { |
| 145 | void *ptr; |
nothing calls this directly
no test coverage detected