Dennis Barzakovsky
Dennis Barzakovsky
Hi, I think AWS4-HMAC-SHA256 is not supported by libs3. To workaround this problem use one of older S3 regions. You may also use AWS SDK for C++ https://aws.amazon.com/ru/blogs/aws/introducing-the-aws-sdk-for-c/ but it...
+1, the issue affects us as well
the same issue on my end, building against `Vulkan-Headers-1.3.302`
@jeffbolznv please take a look. ``` echo $ANDROID_NDK /build/Android/Sdk/ndk/28.0.12674087/ ``` **b4651** ``` git status HEAD detached at b4651 nothing to commit, working tree clean ``` ``` cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a -DANDROID_PLATFORM=android-33...
I updated the nkd to the latest version ``` /build/Android/Sdk/ndk/28.0.13004108//shader-tools/linux-x86_64/glslc -o - -fshader-stage=compute --target-env=vulkan1.3 vulkan-shaders/test_coopmat_support.comp vulkan-shaders/test_coopmat_support.comp:3: error: '#extension' : extension not supported: GL_KHR_cooperative_matrix 1 error generated. ``` hardcoding `glslc` executable...
I spent some time debugging the issue ``` CMake Debug Log at ggml/src/ggml-vulkan/CMakeLists.txt:5 (find_package): find_package considered the following paths for FindVulkan.cmake: /buid/prj/test/llama.cpp/cmake/FindVulkan.cmake The file was found at /build/.local/lib/python3.10/site-packages/cmake/data/share/cmake-3.27/Modules/FindVulkan.cmake ``` added...
> Please check if this branch fixes the glslc mismatch: https://github.com/jeffbolznv/llama.cpp/tree/glslc_mismatch. > > > -DVulkan_GLSLC_EXECUTABLE=/home/ubuntu/android-ndk-r28/shader-tools/linux-x86_64/glslc > > Given how old it is, I kind of think it's a bad idea...