Microbenchmarks icon indicating copy to clipboard operation
Microbenchmarks copied to clipboard

The else statement is missing in opencltest.c

Open edisonchan opened this issue 1 year ago • 0 comments

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) {

edisonchan avatar Dec 04 '24 08:12 edisonchan