Skip to content

Commit d2811cc

Browse files
authored
fix: remove simd feature (#164)
1 parent 47cabfd commit d2811cc

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

algebraic/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
#![allow(clippy::unit_arg)]
2-
#![feature(stdsimd)]
3-
#![feature(const_trait_impl)]
42

53
#[macro_use]
64
extern crate serde;

starky/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#![allow(clippy::needless_range_loop)]
22
#![allow(dead_code)]
3-
#![feature(stdsimd)]
4-
#![feature(const_trait_impl)]
53

64
pub mod polsarray;
75
mod polutils;

test/stark_aggregation.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#!/bin/bash
22
set -ex
33

4-
# ## build
5-
# cargo build --release
6-
## build with avx2 feature
7-
RUSTFLAGS="-C target-feature=+avx2" cargo build --release
4+
# build
5+
if [ "x${USE_AVX2}" = "xyes" ]; then
6+
# build with avx2 feature
7+
RUSTFLAGS="-C target-feature=+avx2" cargo build --release
8+
else
9+
cargo build --release
10+
fi
811

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

0 commit comments

Comments
 (0)