Skip to content

Commit

Permalink
feat: add avx2 Goldilocks (#151)
Browse files Browse the repository at this point in the history
* feat: add draft struct

* feat: impl add

* bugfix for avx by lo

* add aknowledge

* add aknowledge

* use nightly version rustc
  • Loading branch information
SuccinctPaul authored Nov 5, 2023
1 parent 237a80d commit 68d9536
Show file tree
Hide file tree
Showing 8 changed files with 1,744 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly
override: true
- run: rustup component add clippy
- run: cargo clippy --all-targets -- -D warnings
2 changes: 2 additions & 0 deletions algebraic/src/arch/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#[cfg(target_arch = "x86_64")]
pub mod x86_64;
Loading

0 comments on commit 68d9536

Please sign in to comment.