lastest opencl still 3,0,0,0,0,0,0,0.......
The Khronos Group develop the librairie OpenCL, you can see that the last version is `3.0.17` https://registry.khronos.org/OpenCL/specs/3.0-unified/html/OpenCL_API.html -> version v3.0.17, Thu, 24 Oct 2024 12:00:0 +0000
You can see in the file "BUILD.MD" (https://github.com/luminousmining/miner/blob/main/BUILD.md) the version used by LuminousMiner.
I extract it for you.
cd OpenCL-SDK
git fetch --all
git checkout tags/v2024.10.24
git submodule init
git submodule update
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF -DOPENCL_SDK_BUILD_SAMPLES=OFF -DOPENCL_SDK_TEST_SAMPLES=OFF -DCMAKE_INSTALL_PREFIX=/usr/local
cmake --build . --target install
You can see that I used tags `v2024.10.24`.
I admit that I made a mistake for the Windows part, I wrote "tags/v2023.04.17" instead of "v2024.10.24" I forgot to update the build.md at this time.
You can see the last versions of OpenCL here : https://github.com/KhronosGroup/OpenCL-SDK/releases
The first sentences is "Synchronize with OpenCL v3.0.17 specification release."
For the next release I will fix the typo and move on OpenCL 3.0.17!