Skip to content

Commit

Permalink
fix: remove simd feature (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax authored Nov 29, 2023
1 parent 47cabfd commit d2811cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 0 additions & 2 deletions algebraic/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#![allow(clippy::unit_arg)]
#![feature(stdsimd)]
#![feature(const_trait_impl)]

#[macro_use]
extern crate serde;
Expand Down
2 changes: 0 additions & 2 deletions starky/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#![allow(clippy::needless_range_loop)]
#![allow(dead_code)]
#![feature(stdsimd)]
#![feature(const_trait_impl)]

pub mod polsarray;
mod polutils;
Expand Down
11 changes: 7 additions & 4 deletions test/stark_aggregation.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
#!/bin/bash
set -ex

# ## build
# cargo build --release
## build with avx2 feature
RUSTFLAGS="-C target-feature=+avx2" cargo build --release
# build
if [ "x${USE_AVX2}" = "xyes" ]; then
# build with avx2 feature
RUSTFLAGS="-C target-feature=+avx2" cargo build --release
else
cargo build --release
fi

export NODE_OPTIONS="--max-old-space-size=81920"

Expand Down

0 comments on commit d2811cc

Please sign in to comment.