]> git.djapps.eu Git - pkg/ggml/sources/ggml/commitdiff
ci : add M1 node (#577)
authorGeorgi Gerganov <redacted>
Thu, 12 Oct 2023 11:39:39 +0000 (14:39 +0300)
committerGitHub <redacted>
Thu, 12 Oct 2023 11:39:39 +0000 (14:39 +0300)
ggml-ci

ci/run.sh

index 65dc55fe5aee850cf0cf49b5a6e8a1cc0ab8b0e0..93d3919a6f28f1566a95530d1ee0e9b31623ce2d 100644 (file)
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -286,7 +286,9 @@ test $ret -eq 0 && gg_run mnist
 test $ret -eq 0 && gg_run whisper
 
 if [ -z $GG_BUILD_LOW_PERF ]; then
-    test $ret -eq 0 && gg_run mpt
+    if [ -z ${GG_BUILD_VRAM_GB} ] || [ ${GG_BUILD_VRAM_GB} -ge 16 ]; then
+        test $ret -eq 0 && gg_run mpt
+    fi
 fi
 
 exit $ret