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

Function printResult

src/samples/example_sger.c:66–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected