Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
66
static void
67
printResult(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
79
int
80
main(void)
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected