Skip to content

Commit 68d9536

Browse files
authored
feat: add avx2 Goldilocks (#151)
* feat: add draft struct * feat: impl add * bugfix for avx by lo * add aknowledge * add aknowledge * use nightly version rustc
1 parent 237a80d commit 68d9536

File tree

8 files changed

+1744
-2
lines changed

8 files changed

+1744
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions-rs/toolchain@v1
3535
with:
3636
profile: minimal
37-
toolchain: stable
37+
toolchain: nightly
3838
override: true
3939
- run: rustup component add rustfmt
4040
- uses: actions-rs/cargo@v1
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions-rs/toolchain@v1
5050
with:
5151
profile: minimal
52-
toolchain: stable
52+
toolchain: nightly
5353
override: true
5454
- run: rustup component add clippy
5555
- run: cargo clippy --all-targets -- -D warnings

algebraic/src/arch/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#[cfg(target_arch = "x86_64")]
2+
pub mod x86_64;

0 commit comments

Comments
 (0)