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