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

Function printResult

src/samples/example_ssyr.c:54–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52static const int incx = 1;
53
54static void
55printResult(void)
56{
57 size_t i, j;
58 printf("\nResult:\n");
59
60 for (i = 0; i < N; i++) {
61 for(j = 0; j < N; j++)
62 printf("\t(%.2f)", A[ i*N + j ]);
63 printf("\n");
64 }
65}
66
67int
68main(void)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected