| 82 | |
| 83 | template<> |
| 84 | void verifyTypeSupport<arrayfire::common::half>() { |
| 85 | if (!isHalfSupported(getActiveDeviceId())) { |
| 86 | AF_ERROR("Half precision not supported", AF_ERR_NO_HALF); |
| 87 | } |
| 88 | } |
| 89 | } // namespace |
| 90 | |
| 91 | template<typename T> |
nothing calls this directly
no test coverage detected