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

Function printResult

src/samples/example_ssyr2.c:64–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62static const int incx = 1, incy = 1;
63
64static void
65printResult(void)
66{
67 size_t i, j;
68 printf("\nResult:\n");
69
70 for (i = 0; i < N; i++) {
71 for(j = 0; j < N; j++)
72 printf("\t(%.2f)", A[ i*N + j ]);
73 printf("\n");
74 }
75}
76
77int
78main(void)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected