diff options
author | Radosław Gryta <radek.gryta@gmail.com> | 2024-02-25 19:43:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 20:43:00 +0200 |
commit | abbabc5e51d0d4656b438aec10b7fae9479ef37d (patch) | |
tree | 274a9c42f75ceef14e7541b810e2605027786290 /examples | |
parent | f1a98c52546d009f742bdec2154c2a314ea950a6 (diff) |
ggml-quants : provide ggml_vqtbl1q_u8 for 64bit compatibility (#5711)
* [ggml-quants] Provide ggml_vqtbl1q_u8 for 64bit compatibility
vqtbl1q_u8 is not part of arm v7 neon library
* [android-example] Remove abi filter after arm v7a fix
* [github-workflows] Do not skip Android armeabi-v7a build
Diffstat (limited to 'examples')
-rw-r--r-- | examples/llama.android/app/build.gradle.kts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/examples/llama.android/app/build.gradle.kts b/examples/llama.android/app/build.gradle.kts index aadbe22c..d42140ef 100644 --- a/examples/llama.android/app/build.gradle.kts +++ b/examples/llama.android/app/build.gradle.kts @@ -21,12 +21,8 @@ android { useSupportLibrary = true } ndk { - // Workaround for https://github.com/llvm/llvm-project/issues/65820 - // affecting armeabi-v7a. Skip armeabi-v7a when invoked with - // -Pskip-armeabi-v7a (e.g., ./gradlew build -Pskip-armeabi-v7a). - if (project.hasProperty("skip-armeabi-v7a")) { - abiFilters += listOf("arm64-v8a", "x86_64", "x86") - } + // Add NDK properties if wanted, e.g. + // abiFilters += listOf("arm64-v8a") } externalNativeBuild { cmake { |