Skip to content

Commit

Permalink
chore: bump v0.4.5 and add rayon (#39)
Browse files Browse the repository at this point in the history
* chore: add rayon

* bump to version v0.4.5

* fix: asm only x86, fix parallelize inner product

* fix cargo

* chore: update ci test

* chore: add Cargo.lock

* cargo update plotters

* fix fontkit dep

* always test with circuit-params
  • Loading branch information
jonathanpwang authored Feb 4, 2025
1 parent 916c0bf commit 9aff164
Show file tree
Hide file tree
Showing 5 changed files with 1,974 additions and 16 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,32 @@ on: [pull_request, push]

jobs:
test:
name: Test on ${{ matrix.os }}
name: Test on ${{ matrix.os }} with ${{ matrix.feature_set }} features
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]

feature_set: [basic, all]
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- feature_set: basic
features: --features batch,dev-graph,gadget-traces,circuit-params
- feature_set: all
features: --all-features
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
override: false
- name: Install font kit dependencies
if: matrix.os == 'ubuntu-latest'
run: |
# https://crates.io/crates/font-kit
sudo apt install pkg-config libfreetype6-dev libfontconfig1-dev
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --release --all --all-features
args: --verbose --release --workspace --no-default-features ${{ matrix.features }}

build:
name: Build target ${{ matrix.target }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
**/*.rs.bk
Cargo.lock
.vscode
.DS_Store
Loading

0 comments on commit 9aff164

Please sign in to comment.