zilla-muf 0.1.1

Shared structured-matrix and numerical primitives for sparse attention and state space models (SSMs).
Documentation
name: Rust

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Run tests
      run: cargo test --verbose
    - name: Run fft tests
      run: cargo test --features fft --verbose
    - name: Run parallel tests
      run: cargo test --features parallel --verbose
    - name: Run parallel and fft tests
      run: cargo test --features parallel,fft --verbose