Skip to content

Commit

Permalink
fix: add NUM_RESERVED_GATES before fetching subgroup size in composer (
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm authored Jun 16, 2023
1 parent 0c7b5e2 commit 0a0d767
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ void AcirComposer::create_circuit(acir_format::acir_format& constraint_system)

exact_circuit_size_ = composer_.get_num_gates();
total_circuit_size_ = composer_.get_total_circuit_size();
circuit_subgroup_size_ = composer_.get_circuit_subgroup_size(total_circuit_size_);
circuit_subgroup_size_ =
composer_.get_circuit_subgroup_size(total_circuit_size_ + composer_.composer_helper.NUM_RESERVED_GATES);
size_hint_ = circuit_subgroup_size_;
}

Expand All @@ -44,7 +45,8 @@ void AcirComposer::init_proving_key(std::shared_ptr<barretenberg::srs::factories

exact_circuit_size_ = composer_.get_num_gates();
total_circuit_size_ = composer_.get_total_circuit_size();
circuit_subgroup_size_ = composer_.get_circuit_subgroup_size(total_circuit_size_);
circuit_subgroup_size_ =
composer_.get_circuit_subgroup_size(total_circuit_size_ + composer_.composer_helper.NUM_RESERVED_GATES);

info("computing proving key...");
proving_key_ = composer_.compute_proving_key();
Expand Down

0 comments on commit 0a0d767

Please sign in to comment.