Skip to content

Commit

Permalink
fix: Intermittent invert 0 in Goblin (#5189)
Browse files Browse the repository at this point in the history
#5174 provided a
general fix for this issue, but did not implement it in the particular
case of the translator test, leading to a regression. We fix that.
  • Loading branch information
codygunton authored Mar 13, 2024
1 parent d1799ae commit 6c70624
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ TEST_F(GoblinTranslatorComposerTests, Basic)

// Add the same operations to the ECC op queue; the native computation is performed under the hood.
auto op_queue = std::make_shared<bb::ECCOpQueue>();
op_queue->append_nonzero_ops();

for (size_t i = 0; i < 500; i++) {
op_queue->add_accumulate(P1);
op_queue->mul_accumulate(P2, z);
Expand Down

0 comments on commit 6c70624

Please sign in to comment.