Microbenchmarks
Microbenchmarks copied to clipboard
The else statement is missing in opencltest.c
if (_strnicmp(argv[argIdx], "scalarlatency", 13) == 0) {
It would cause "I'm so confused. Unknown test type vectorlatency" if -test vectorlatency.
it should be:
else if (_strnicmp(argv[argIdx], "scalarlatency", 13) == 0) {