mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-07 22:53:56 -05:00
This PR adds support of the m31 Field --------- Co-authored-by: Jeremy Felder <jeremy.felder1@gmail.com>
113 lines
4.7 KiB
YAML
113 lines
4.7 KiB
YAML
name: Rust
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- V2
|
|
push:
|
|
branches:
|
|
- main
|
|
- V2
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-changed-files:
|
|
uses: ./.github/workflows/check-changed-files.yml
|
|
|
|
check-format:
|
|
name: Check Code Format
|
|
runs-on: ubuntu-22.04
|
|
needs: check-changed-files
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Check rustfmt
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
working-directory: ./wrappers/rust
|
|
# "-name target -prune" removes searching in any directory named "target"
|
|
# Formatting by single file is necessary due to generated files not being present
|
|
# before building the project.
|
|
# e.g. icicle-cuda-runtime/src/bindings.rs is generated and icicle-cuda-runtime/src/lib.rs includes that module
|
|
# causing rustfmt to fail.
|
|
run: if [[ $(find . -path ./icicle-curves/icicle-curve-template -prune -o -name target -prune -o -iname *.rs -print | xargs cargo fmt --check --) ]]; then echo "Please run cargo fmt"; exit 1; fi
|
|
|
|
build-linux:
|
|
name: Build on Linux
|
|
runs-on: [self-hosted, Linux, X64, icicle]
|
|
needs: [check-changed-files, check-format]
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
- name: Build
|
|
working-directory: ./wrappers/rust
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
# Building from the root workspace will build all members of the workspace by default
|
|
run: cargo build --release --verbose
|
|
|
|
test-linux:
|
|
name: Test on Linux
|
|
runs-on: [self-hosted, Linux, X64, icicle]
|
|
needs: [check-changed-files, build-linux]
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
- name: Run tests
|
|
working-directory: ./wrappers/rust
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
# Running tests from the root workspace will run all workspace members' tests by default
|
|
# We need to limit the number of threads to avoid running out of memory on weaker machines
|
|
# ignored tests are polynomial tests. Since they conflict with NTT tests, they are executed separately
|
|
run: |
|
|
cargo test --workspace --exclude icicle-babybear --exclude icicle-stark252 --exclude icicle-m31 --release --verbose --features=g2 -- --test-threads=2 --ignored
|
|
cargo test --workspace --exclude icicle-babybear --exclude icicle-stark252 --exclude icicle-m31 --release --verbose --features=g2 -- --test-threads=2
|
|
|
|
- name: Run baby bear tests
|
|
working-directory: ./wrappers/rust/icicle-fields/icicle-babybear
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
run: |
|
|
cargo test --release --verbose -- --ignored
|
|
cargo test --release --verbose
|
|
|
|
- name: Run stark252 tests
|
|
working-directory: ./wrappers/rust/icicle-fields/icicle-stark252
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
run: |
|
|
cargo test --release --verbose -- --ignored
|
|
cargo test --release --verbose
|
|
|
|
- name: Run m31 tests
|
|
working-directory: ./wrappers/rust/icicle-fields/icicle-m31
|
|
if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
run: |
|
|
cargo test --release --verbose -- --ignored
|
|
cargo test --release --verbose
|
|
|
|
# build-windows:
|
|
# name: Build on Windows
|
|
# runs-on: windows-2022
|
|
# needs: check-changed-files
|
|
# steps:
|
|
# - name: Checkout Repo
|
|
# uses: actions/checkout@v4
|
|
# - name: Download and Install Cuda
|
|
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
# id: cuda-toolkit
|
|
# uses: Jimver/cuda-toolkit@v0.2.11
|
|
# with:
|
|
# cuda: '12.0.0'
|
|
# method: 'network'
|
|
# # https://docs.nvidia.com/cuda/archive/12.0.0/cuda-installation-guide-microsoft-windows/index.html
|
|
# sub-packages: '["cudart", "nvcc", "thrust", "visual_studio_integration"]'
|
|
# - name: Build targets
|
|
# working-directory: ./wrappers/rust
|
|
# if: needs.check-changed-files.outputs.rust == 'true' || needs.check-changed-files.outputs.cpp_cuda == 'true'
|
|
# env:
|
|
# CUDA_PATH: ${{ steps.cuda-toolkit.outputs.CUDA_PATH }}
|
|
# CUDA_ARCH: 50 # Using CUDA_ARCH=50 env variable since the CI machines have no GPUs
|
|
# # Building from the root workspace will build all members of the workspace by default
|
|
# run: cargo build --release --verbose
|