Skip to content

Commit

Permalink
chore: screen simd feature (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
eigmax authored Nov 6, 2023
1 parent 68d9536 commit 9161453
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions algebraic/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![allow(clippy::unit_arg)]
#![feature(stdsimd)]

// #![feature(stdsimd)]

#[macro_use]
extern crate serde;
Expand All @@ -12,7 +13,7 @@ extern crate num_bigint;
extern crate num_traits;
extern crate rand;

pub mod arch;
// pub mod arch;

pub mod circom_circuit;
pub mod errors;
Expand Down
2 changes: 1 addition & 1 deletion starky/src/stark_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ fn calculate_H1H2<F: FieldExtension>(f: Vec<F>, t: Vec<F>) -> (Vec<F>, Vec<F>) {
s.push((*e, i));
}

for (_i, e) in f.iter().enumerate() {
for e in f.iter() {
let idx = idx_t.get(e);
if idx.is_none() {
panic!("Number not included: {:?}", e);
Expand Down

0 comments on commit 9161453

Please sign in to comment.