Skip to content

Commit

Permalink
ci : add M1 node (#577)
Browse files Browse the repository at this point in the history
ggml-ci
  • Loading branch information
ggerganov authored Oct 12, 2023
1 parent ab765d7 commit 159bdae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 159bdae

Please sign in to comment.