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

Function printResult

src/samples/example_dtrmv.c:65–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63static const int incy = 1;
64
65static void
66printResult(void)
67{
68 size_t i, nElements;
69
70 printf("Result:\n");
71
72 nElements = (sizeof(Y) / sizeof(cl_double)) / incy;
73 for (i = 0; i < nElements; i++) {
74 printf("%d\n", (int)Y[i * incy]);
75 }
76}
77
78int
79main(void)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected