| 60 | |
| 61 | template<typename T> |
| 62 | static inline T dotAll(af_array out) { |
| 63 | T res{}; |
| 64 | AF_CHECK(af_eval(out)); |
| 65 | AF_CHECK(af_get_data_ptr((void *)&res, out)); |
| 66 | return res; |
| 67 | } |
| 68 | |
| 69 | } // namespace |
| 70 |
nothing calls this directly
no test coverage detected