We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26c98b9 commit 8ae9dccCopy full SHA for 8ae9dcc
tests/benchmark/compute/instruction/test_arithmetic.py
@@ -302,6 +302,7 @@ def test_mod(
302
303
input_value = initial_mod if not should_negate else neg(initial_mod)
304
benchmark_test(
305
+ target_opcode=opcode,
306
code_generator=JumpLoopGenerator(
307
setup=setup,
308
attack_block=attack_block,
@@ -440,6 +441,7 @@ def test_exp_bench_arithmetic(
440
441
attack_block = Op.DUP2 + Op.EXP
442
cleanup = Op.POP + Op.POP + Op.DUP2 + Op.DUP2
443
444
+ target_opcode=Op.EXP,
445
446
447
0 commit comments