| 38 | } |
| 39 | |
| 40 | template <typename T> static void |
| 41 | deleteBuffers(T *A, T *blasB, T *clblasB) |
| 42 | { |
| 43 | delete[] A; |
| 44 | delete[] blasB; |
| 45 | delete[] clblasB; |
| 46 | } |
| 47 | |
| 48 | template <typename T> |
| 49 | void |
nothing calls this directly
no outgoing calls
no test coverage detected