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 5e4f3ae commit 70f1777Copy full SHA for 70f1777
1 file changed
ci/run.sh
@@ -57,6 +57,12 @@ SRC=`pwd`
57
CMAKE_EXTRA="-DLLAMA_FATAL_WARNINGS=${LLAMA_FATAL_WARNINGS:-ON} -DLLAMA_OPENSSL=OFF -DGGML_SCHED_NO_REALLOC=ON"
58
CTEST_EXTRA=""
59
60
+# Low-perf CI uses native CPU codegen on shared hosted runners. Do not reuse
61
+# cached native objects across machines with potentially different CPU features.
62
+if [ ! -z ${GG_BUILD_LOW_PERF} ]; then
63
+ CMAKE_EXTRA="${CMAKE_EXTRA} -DGGML_CCACHE=OFF"
64
+fi
65
+
66
# Default to use make unless specified for compatibility
67
CMAKE_GENERATOR="Unix Makefiles"
68
0 commit comments