We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CASM execution:
stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 4 stack_pop top 4
Native execution:
stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 0 stack_push top 4 stack_pop top 0
Trying to debug why native would fail our EF-Tests.
Repro: scarb 2.8.2 clone https://github.com/kkrt-labs/kakarot-ssj git checkout temp/debug native scarb build -p contracts - builds the required contract with some debug print logs diff with main is only prints: kkrt-labs/kakarot-ssj#973
git checkout temp/debug native
scarb build -p contracts
clone https://github.com/kkrt-labs/ef-tests ensure correct branch git checkout feat/cairo-native make make setup-kakarot copy the contracts built previously:cp ../kakarot-ssj/target/dev/contracts_* build/v1 cargo test mulmod_d0g0v0_Cancun --features v1,native -- --nocapture (with LLVM19)
git checkout feat/cairo-native
make
make setup-kakarot
cp ../kakarot-ssj/target/dev/contracts_* build/v1
cargo test mulmod_d0g0v0_Cancun --features v1,native -- --nocapture
Relevant Cairo code https://github.com/kkrt-labs/kakarot-ssj/blob/29ace538518990a108ba30b3d0a690b2c8ca0724/crates/evm/src/stack.cairo
The text was updated successfully, but these errors were encountered:
add test reproducing bug #808
8ac2461
e6980db
closing as fixed
Sorry, something went wrong.
Add test reproducing bug #808 (#810)
ae17dd3
* Fix snapshot clones. Extract if statement from function for better readability. * Fix broken MLIR bug. * add test reproducing bug #808 --------- Co-authored-by: Esteve Soler Arderiu <esteve.soler@lambdaclass.com> Co-authored-by: Pedro Fontana <fontana.pedro93@gmail.com>
edg-l
No branches or pull requests
CASM execution:
Native execution:
Trying to debug why native would fail our EF-Tests.
Repro:
scarb 2.8.2
clone https://github.com/kkrt-labs/kakarot-ssj
git checkout temp/debug native
scarb build -p contracts
- builds the required contract with some debug print logsdiff with main is only prints: kkrt-labs/kakarot-ssj#973
clone https://github.com/kkrt-labs/ef-tests
ensure correct branch
git checkout feat/cairo-native
make
make setup-kakarot
copy the contracts built previously:
cp ../kakarot-ssj/target/dev/contracts_* build/v1
cargo test mulmod_d0g0v0_Cancun --features v1,native -- --nocapture
(with LLVM19)Relevant Cairo code
https://github.com/kkrt-labs/kakarot-ssj/blob/29ace538518990a108ba30b3d0a690b2c8ca0724/crates/evm/src/stack.cairo
The text was updated successfully, but these errors were encountered: