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

Function deleteBuffers

src/tests/correctness/corr-hpr.cpp:40–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected