udate simulation to use smaller key value to save time

This commit is contained in:
bsdevlin 2019-07-01 14:41:34 +08:00
parent f06a82cf55
commit 4b6861f626
1 changed files with 2 additions and 1 deletions

View File

@ -240,7 +240,8 @@ task test_bls12_381();
bls12_381_pkg::inst_t inst;
bls12_381_interrupt_rpl_t interrupt_rpl;
fp2_jb_point_t out_p, exp_p;
logic [380:0] in_k = 381'h33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333;
logic [380:0] in_k = 381'h33;
exp_p = fp2_point_mult(in_k, g2_point);
// Make sure we aren't in reset
while(!tb.card.fpga.CL.zcash_fpga_top.bls12_381_top.inst_uram_reset.reset_done ||