You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On several examples in the Valida LLVM compiler test suite, the trace fails to satisfy a particular constraint of the Bitwise chip, in alu_u32/src/bitwise/stark.rs:
The following is the result of trying to prove an execution of this program:
Proof successful
thread 'main' panicked at /home/morgan/code/lita/issue/completeness/valida/basic/src/lib.rs:54:10:
Failed to verify constraints on chip 10: OodEvaluationMismatch
When the mentioned constraint is commented out, then proving succeeds and results in a verifiable proof of execution for this example.
Produce a minimal example which exhibits the issue. Fix the issue. Add a regression test to the test suite which verifies the proof of an execution of a minimal example which exhibits the issue.
The text was updated successfully, but these errors were encountered:
On several examples in the Valida LLVM compiler test suite, the trace fails to satisfy a particular constraint of the Bitwise chip, in
alu_u32/src/bitwise/stark.rs
:For example, the following C file results in the failure in question when compiled by the Valida LLVM compiler:
This file compiles into the following assembly code:
The following is the result of trying to prove an execution of this program:
When the mentioned constraint is commented out, then proving succeeds and results in a verifiable proof of execution for this example.
Produce a minimal example which exhibits the issue. Fix the issue. Add a regression test to the test suite which verifies the proof of an execution of a minimal example which exhibits the issue.
The text was updated successfully, but these errors were encountered: