Romaric Jodin
Romaric Jodin
Can you try running [clinfo](https://github.com/Oblomov/clinfo)? I suspect that the call to `clGetDevicesIDs` in xmrig is not looking for every devices available.
To know which `libOpenCL.so` the application is using, you can set `LD_DEBUG=libs` in your command line. It will print a lot of things containing which lib the application is linking...
You can try to compile `clinfo` by yourself, but it will be easier to use the one from `apt` Everything I explained in the previous message was about executing `clinfo`,...
First, you need to have properly configure cmake: https://github.com/kpet/clvk/blob/master/README.md#tests Then just building clvk should build the test, but you can also force it with this command: `cmake --build --target simple_test`
`-DCLVK_BUILD_CONFORMANCE_TESTS=ON` is for the OpenCL CTS to be build, which is not what you are targeting here I believe. Just make sure that you did not set `-DCLVK_BUILD_TESTS=OFF` (default is...
cmake has a cache: `CMakeCache.txt`. Because you did not clean your build repository, the `DCLVK_BUILD_CONFORMANCE_TESTS` is still to `ON`, which produce the call to cmake to end with the `Configuring...
Sorry, I forget the `-` before `DCLVK_BUILD_CONFORMANCE_TESTS=OFF`, so it did not change anything. Please retry with `-DCLVK_BUILD_CONFORMANCE_TESTS=OFF`
Yes, I have also considered this solution. I think the actual code is closer to this solution than the one I have proposed above. The issue is that `clspv` often...
This is fixed with https://github.com/google/clspv/pull/846 (might already be fixed in `main`)
Hi @PlasmaPower, This example is still failing on the same line you mentioned above. It still needs to be fixed in clspv. But even after this issue is fixed, your...