diff options
author | Eve <139727413+netrunnereve@users.noreply.github.com> | 2023-07-25 08:16:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 15:16:13 +0300 |
commit | 1fed755b1fb9babb6dbc1b4023e492950cd5a5be (patch) | |
tree | b1a52d700baa61340d953b7b3b9ded2ad5400535 /.github/workflows | |
parent | be2301bcdaf6c9f0921141bd071de7788e2a351a (diff) |
ci : add non-AVX scalar build/test (#2356)
* noavx build and test
* we don't need to remove f16c in windows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6e21b4..84faad3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -197,6 +197,8 @@ jobs: strategy: matrix: include: + - build: 'noavx' + defines: '-DLLAMA_BUILD_SERVER=ON -DLLAMA_AVX=OFF -DLLAMA_AVX2=OFF -DLLAMA_FMA=OFF' - build: 'avx2' defines: '-DLLAMA_BUILD_SERVER=ON' - build: 'avx' |