We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6794f commit 0a4b79cCopy full SHA for 0a4b79c
examples/llama.android/llama/build.gradle.kts
@@ -19,6 +19,7 @@ android {
19
externalNativeBuild {
20
cmake {
21
arguments += "-DLLAMA_BUILD_COMMON=ON"
22
+ arguments += "-DGGML_LLAMAFILE=OFF"
23
arguments += "-DCMAKE_BUILD_TYPE=Release"
24
cppFlags += listOf()
25
arguments += listOf()
ggml/src/ggml-cpu/llamafile/sgemm.cpp
@@ -204,6 +204,7 @@ template <> inline float32x4_t load(const float *p) {
204
return vld1q_f32(p);
205
}
206
#if !defined(_MSC_VER)
207
+// FIXME: this should check for __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
208
template <> inline float16x8_t load(const ggml_fp16_t *p) {
209
return vld1q_f16((const float16_t *)p);
210
0 commit comments