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

Function printResult

src/samples/example_zher2.c:63–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61
62
63static void
64printResult(void)
65{
66 size_t i, j;
67 printf("\nResult:\n");
68
69 for (i = 0; i < N; i++) {
70 for(j = 0; j < N; j++)
71 printf("(%9.2lf, %-9.2lf)\t", CREAL( A[ i*N + j ] ), CIMAG( A[ i*N + j ] ));
72 printf("\n");
73 }
74}
75
76int
77main(void)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected