Skip to content

Update benchmark numbers: Q4_0 20→25.4 tok/s (63% of llama.cpp) #41

Update benchmark numbers: Q4_0 20→25.4 tok/s (63% of llama.cpp)

Update benchmark numbers: Q4_0 20→25.4 tok/s (63% of llama.cpp) #41

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
strategy:
matrix:
include:
- os: ubuntu-latest
cc: gcc
- os: ubuntu-latest
cc: clang
- os: macos-latest
cc: clang
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Build
run: make bitnet
env:
CC: ${{ matrix.cc }}
- name: Test
run: make test
env:
CC: ${{ matrix.cc }}