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

Function printResult

src/samples/example_zhemv.cpp:63–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected