Skip to content

Commit

Permalink
fix cargo test metal
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole authored and Nicole committed Jan 10, 2025
1 parent d63b915 commit 084f0c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions provers/stark/src/tests/integration_tests.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//#[cfg(not(feature = "metal"))]
#[cfg(not(feature = "metal"))]
use lambdaworks_crypto::fiat_shamir::default_transcript::DefaultTranscript;
use lambdaworks_math::field::{
element::FieldElement, fields::fft_friendly::stark_252_prime_field::Stark252PrimeField,
};

//#[cfg(not(feature = "metal"))]
#[cfg(not(feature = "metal"))]
use lambdaworks_math::field::fields::fft_friendly::{
babybear::Babybear31PrimeField, quartic_babybear::Degree4BabyBearExtensionField,
};
Expand All @@ -28,7 +28,7 @@ use crate::{
Felt252,
};

//#[cfg(not(feature = "metal"))]
#[cfg(not(feature = "metal"))]
use crate::examples::read_only_memory_logup::{
read_only_logup_trace, LogReadOnlyPublicInputs, LogReadOnlyRAP,
};
Expand Down Expand Up @@ -307,8 +307,8 @@ fn test_prove_read_only_memory() {
));
}

#[cfg(not(feature = "metal"))]
#[test_log::test]
//#[cfg(not(feature = "metal"))]
fn test_prove_log_read_only_memory() {
let address_col = vec![
FieldElement::<Babybear31PrimeField>::from(3), // a0
Expand Down

0 comments on commit 084f0c3

Please sign in to comment.