Hi,
I've built the clBLAS from the clMath package, and also built clMagma v. 1.3 on a Mac Pro with AMD cards. Was attempting to do a simple test with magma_dgesv_gpu to see if I could get it to work. Good news is that it returns the correct value, but it also pops up with an odd error message: "Error querying for program binary sizes". Any ideas where that might be coming from? Is it a concern? The same thing pops up with the testing_dgesv.cpp file in the test suite. Thanks...
D
clMagma and odd error message
Re: clMagma and odd error message
This appears to be in clBLAS. It can cache on disk the OpenCL binaries that are generated at runtime, saving substantial time. I don't know what the effects of the error are.
-mark
Code: Select all
mint ~/src/clBLAS-2.12> grep 'Error querying for program binary sizes' -r .
Binary file ./src/build/library/CMakeFiles/clBLAS.dir/blas/generic/binary_lookup.cc.o matches
Binary file ./src/build/library/libclBLAS.2.12.0.dylib matches
Binary file ./src/build/library/tools/tune/CMakeFiles/tune.dir/__/__/blas/generic/binary_lookup.cc.o matches
Binary file ./src/build/staging/clBLAS-tune matches
./src/library/blas/generic/binary_lookup.cc: std::cerr << "Error querying for program binary sizes" << std::endl;
Re: clMagma and odd error message
Thanks, I didn't think about it being in there. I'll take the question over to them to see what they say.