Skip to content

Commit 661a429

Browse files
committed
Fix GPU compilation?
1 parent c77616f commit 661a429

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

openvm/src/trace_generation.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,9 @@ use tracing::info_span;
1212

1313
use crate::{BabyBearSC, CompiledProgram};
1414

15-
#[cfg(not(feature = "cuda"))]
15+
// Use CPU for simplicity.
1616
use crate::PowdrSdkCpu as PowdrSdk;
17-
#[cfg(feature = "cuda")]
18-
use crate::PowdrSdkGpu as PowdrSdk;
19-
20-
#[cfg(not(feature = "cuda"))]
2117
use crate::SpecializedConfigCpuBuilder as SpecializedConfigBuilder;
22-
#[cfg(feature = "cuda")]
23-
use crate::SpecializedConfigGpuBuilder as SpecializedConfigBuilder;
24-
25-
#[cfg(feature = "cuda")]
26-
use openvm_cuda_backend::engine::GpuBabyBearPoseidon2Engine as BabyBearPoseidon2Engine;
27-
#[cfg(not(feature = "cuda"))]
2818
use openvm_stark_sdk::config::baby_bear_poseidon2::BabyBearPoseidon2Engine;
2919

3020
/// Given a program and input, generates the trace segment by segment and calls the provided

0 commit comments

Comments
 (0)