From 159bdae6ed20e1d408238fc5850f765134ee7935 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Thu, 12 Oct 2023 14:39:39 +0300 Subject: [PATCH] ci : add M1 node (#577) ggml-ci --- ci/run.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/run.sh b/ci/run.sh index 65dc55fe5..93d3919a6 100644 --- 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