MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / deleteBuffers

Function deleteBuffers

src/tests/correctness/corr-her.cpp:41–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39}
40
41template <typename T> static void
42deleteBuffers(T *A, T *X, T *backA)
43{
44 if(A != NULL)
45 {
46 delete[] A;
47 }
48 if(X != NULL)
49 {
50 delete[] X;
51 }
52 if(backA != NULL)
53 {
54 delete[] backA;
55}
56}
57
58template <typename T>
59void

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected