Skip to content

feat(quantization): add EVP quantization and symmetric inner product … #28

feat(quantization): add EVP quantization and symmetric inner product …

feat(quantization): add EVP quantization and symmetric inner product … #28

Workflow file for this run

name: C++ CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
workflow_dispatch:
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure CMake
run: cmake -B build -S cpp -DFORCE_AVX2=ON -DENABLE_BENCHMARKS=OFF
- name: Build
run: cmake --build build --config Release
- name: Run Tests
run: ctest --test-dir build --output-on-failure -C Release