Skip to content

Commit 3ccb690

Browse files
committed
Force jit for goldilocks.
1 parent f527ce6 commit 3ccb690

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

executor/src/witgen/machines/block_machine.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,10 @@ impl<'a, T: FieldElement> BlockMachine<'a, T> {
474474
return Ok(updates);
475475
}
476476

477-
return Ok(EvalValue::incomplete(IncompleteCause::SolvingFailed));
477+
if T::known_field() == Some(powdr_number::KnownField::GoldilocksField) {
478+
// We force JIT for goldilocks only for now.
479+
return Ok(EvalValue::incomplete(IncompleteCause::SolvingFailed));
480+
}
478481

479482
let outer_query = OuterQuery::new(
480483
arguments,

0 commit comments

Comments
 (0)