| 96 | |
| 97 | template<typename T> |
| 98 | af_array createHandleFromValue(const af::dim4 &d, double val) { |
| 99 | return getHandle(detail::createValueArray<T>(d, detail::scalar<T>(val))); |
| 100 | } |
| 101 | |
| 102 | template<typename T> |
| 103 | af_array createHandleFromData(const af::dim4 &d, const T *const data) { |
no test coverage detected