Skip to content

Commit

Permalink
Respond to review
Browse files Browse the repository at this point in the history
  • Loading branch information
codygunton committed Nov 15, 2024
1 parent 3d276dd commit e04aeab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ struct ExecutionTraceUsageTracker {
}

if (trace_settings.structure) {
info("yes trace structure");
fixed_sizes.set_fixed_block_sizes(trace_settings);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ struct TraceSettings {
uint32_t overflow_capacity = 0;
};

class MegaTraceBlock : public ExecutionTraceBlock<fr, 4, 14> {
class MegaTraceBlock : public ExecutionTraceBlock<fr, /*NUM_WIRES_ */ 4, /*NUM_SELECTORS_*/ 14> {
using SelectorType = ExecutionTraceBlock<fr, 4, 14>::SelectorType;

public:
Expand Down Expand Up @@ -262,8 +262,8 @@ static constexpr TraceStructure SMALL_TEST_STRUCTURE{ .ecc_op = 1 << 14,
.overflow = 0 };

/**
* @brief A minimal structuring specifically tailored to the medium complexity transaction for the Cli: MentIVC
* benchmark
* @brief A minimal structuring specifically tailored to the medium complexity transaction of the Client IVC
* benchmark.
*/
static constexpr TraceStructure CLIENT_IVC_BENCH_STRUCTURE{ .ecc_op = 1 << 10,
.pub_inputs = 1 << 7,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ template <typename T> struct UltraTraceBlockData {
bool operator==(const UltraTraceBlockData& other) const = default;
};

class UltraTraceBlock : public ExecutionTraceBlock<fr, 4, 13> {
class UltraTraceBlock : public ExecutionTraceBlock<fr, /*NUM_WIRES_ */ 4, /*NUM_SELECTORS_*/ 13> {
using SelectorType = ExecutionTraceBlock<fr, 4, 13>::SelectorType;

public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ Accumulator ECCVMSetRelationImpl<FF>::compute_grand_product_denominator(const Al
}

/**
* @brief Expression for the StandardExecutionTracemetic gate.
* @brief Expression for the standard arithmetic gate.
* @dbetails The relation is defined as C(in(X)...) =
* (q_m * w_r * w_l) + (q_l * w_l) + (q_r * w_r) + (q_o * w_o) + q_c
*
Expand Down

0 comments on commit e04aeab

Please sign in to comment.