Skip to content

Commit

Permalink
fix: speculative CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad0 committed Feb 14, 2024
1 parent 8a65de1 commit 826aa35
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ std::shared_ptr<typename ProverInstances::Instance> ProtoGalaxyProver_<ProverIns
for (size_t inst_idx = 0; inst_idx < ProverInstances::NUM; inst_idx++) {
for (auto [acc_poly, inst_poly] :
zip_view(acc_prover_polynomials.get_all(), instances[inst_idx]->prover_polynomials.get_all())) {
for (auto [acc_el, inst_el] : zip_view(acc_poly, inst_poly)) {
for (auto [acc_el, inst_el] : zip_view(ZipAllowDifferentSizes::FLAG, acc_poly, inst_poly)) {
acc_el += inst_el * lagranges[inst_idx];
}
}
Expand Down

0 comments on commit 826aa35

Please sign in to comment.