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

Function printResult

src/samples/example_sgemv.c:71–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69static const size_t offY = 1; /* off */
70
71static void
72printResult(const char* str)
73{
74 size_t i, nElements;
75
76 printf("%s:\n", str);
77
78 nElements = (sizeof(result) / sizeof(cl_float)) / incy;
79 for (i = 0; i < nElements; i++) {
80 printf("%d\n", (int)result[i * incy]);
81 }
82}
83
84int
85main(void)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected