| 599 | namespace af { |
| 600 | template<> |
| 601 | __half *array::device<__half>() const { |
| 602 | void *ptr = NULL; |
| 603 | af_get_device_ptr(&ptr, get()); |
| 604 | return static_cast<__half *>(ptr); |
| 605 | } |
| 606 | } // namespace af |
nothing calls this directly
no test coverage detected