Skip to content

Add ARM NEON SIMD for ternary_matvec() inner loops (3.6x speedup) #5

Add ARM NEON SIMD for ternary_matvec() inner loops (3.6x speedup)

Add ARM NEON SIMD for ternary_matvec() inner loops (3.6x speedup) #5

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 }}