Skip to content

Commit 742b31f

Browse files
authored
chore: the great deletion (#17926)
1 parent efe3a86 commit 742b31f

File tree

78 files changed

+122
-6267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+122
-6267
lines changed

barretenberg/cpp/bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ function test_cmds {
284284
# Mostly arbitrary set that touches lots of the code.
285285
declare -A asan_tests=(
286286
["commitment_schemes_recursion_tests"]="IPARecursiveTests.AccumulationAndFullRecursiveVerifier"
287-
["client_ivc_tests"]="ClientIVCTests.BasicStructured"
288-
["ultra_honk_tests"]="MegaHonkTests/0.BasicStructured"
287+
["client_ivc_tests"]="ClientIVCTests.Basic"
288+
["ultra_honk_tests"]="MegaHonkTests/0.Basic"
289289
["dsl_tests"]="AcirHonkRecursionConstraint/1.TestBasicDoubleHonkRecursionConstraints"
290290
)
291291
# If in amd64 CI, iterate asan_tests, creating a gtest invocation for each.

barretenberg/cpp/scripts/audit/audit_summary.json

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -120,17 +120,6 @@
120120
"not started": 24
121121
}
122122
},
123-
"protogalaxy": {
124-
"internal": {
125-
"not started": 9
126-
},
127-
"external_1": {
128-
"not started": 9
129-
},
130-
"external_2": {
131-
"not started": 9
132-
}
133-
},
134123
"relations": {
135124
"internal": {
136125
"not started": 53

barretenberg/cpp/scripts/benchmark_protogalaxy.sh

Lines changed: 0 additions & 25 deletions
This file was deleted.

barretenberg/cpp/scripts/line_count.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"nodejs_module": 0,
4141
"numeric": 1,
4242
"polynomials": 1,
43-
"protogalaxy": 1,
4443
"relations": 1,
4544
"serialize": 1,
4645
"smt_verification": 0,
@@ -96,7 +95,6 @@ def count_weighted_lines():
9695
weights["client_ivc"] = 1.5
9796
weights["eccvm"] = 2
9897
weights["goblin"] = 1.5
99-
weights["protogalaxy"] = 1.5
10098
weights["relations"] = 2
10199
weights["stdlib"] = 1 # partially audited so not reweighting for complexity
102100
weights["stdlib_circuit_builders"]

barretenberg/cpp/src/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ add_subdirectory(barretenberg/multilinear_batching)
102102
add_subdirectory(barretenberg/numeric)
103103
add_subdirectory(barretenberg/op_queue)
104104
add_subdirectory(barretenberg/polynomials)
105-
add_subdirectory(barretenberg/protogalaxy)
106105
add_subdirectory(barretenberg/relations)
107106
add_subdirectory(barretenberg/serialize)
108107
add_subdirectory(barretenberg/solidity_helpers)
@@ -167,7 +166,6 @@ set(BARRETENBERG_TARGET_OBJECTS
167166
$<TARGET_OBJECTS:numeric_objects>
168167
$<TARGET_OBJECTS:op_queue_objects>
169168
$<TARGET_OBJECTS:polynomials_objects>
170-
$<TARGET_OBJECTS:protogalaxy_objects>
171169
$<TARGET_OBJECTS:relations_objects>
172170
$<TARGET_OBJECTS:srs_objects>
173171
$<TARGET_OBJECTS:stdlib_aes128_objects>
@@ -184,7 +182,6 @@ set(BARRETENBERG_TARGET_OBJECTS
184182
$<TARGET_OBJECTS:stdlib_pedersen_hash_objects>
185183
$<TARGET_OBJECTS:stdlib_poseidon2_objects>
186184
$<TARGET_OBJECTS:stdlib_primitives_objects>
187-
$<TARGET_OBJECTS:stdlib_protogalaxy_verifier_objects>
188185
$<TARGET_OBJECTS:stdlib_schnorr_objects>
189186
$<TARGET_OBJECTS:stdlib_sha256_objects>
190187
$<TARGET_OBJECTS:stdlib_translator_vm_verifier_objects>

barretenberg/cpp/src/barretenberg/api/api_client_ivc.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ namespace { // anonymous namespace
2727
*
2828
* @param bytecode_path
2929
* @param witness_path
30-
* @param use_structured_trace Whether to utilize structured trace when computing VK for circuit
3130
*/
3231
void write_standalone_vk(std::vector<uint8_t> bytecode, const std::filesystem::path& output_path)
3332
{

barretenberg/cpp/src/barretenberg/bbapi/bbapi_client_ivc.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#include "barretenberg/dsl/acir_format/acir_to_constraint_buf.hpp"
88
#include "barretenberg/dsl/acir_format/pg_recursion_constraint.hpp"
99
#include "barretenberg/dsl/acir_format/serde/witness_stack.hpp"
10-
#include "barretenberg/honk/execution_trace/execution_trace_usage_tracker.hpp"
1110
#include "barretenberg/serialize/msgpack_check_eq.hpp"
1211
#include "barretenberg/stdlib_circuit_builders/mega_circuit_builder.hpp"
1312

@@ -259,7 +258,7 @@ ClientIvcStats::Response ClientIvcStats::execute([[maybe_unused]] BBApiRequest&
259258
", circuit_size: ",
260259
response.circuit_size);
261260

262-
// Print structured execution trace details
261+
// Print execution trace details
263262
builder.blocks.summarize();
264263

265264
return response;

barretenberg/cpp/src/barretenberg/benchmark/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ add_subdirectory(ipa_bench)
55
add_subdirectory(ipc_bench)
66
add_subdirectory(client_ivc_bench)
77
add_subdirectory(pippenger_bench)
8-
add_subdirectory(protogalaxy_bench)
9-
add_subdirectory(protogalaxy_rounds_bench)
108
add_subdirectory(relations_bench)
119
add_subdirectory(poseidon2_bench)
1210
add_subdirectory(merkle_tree_bench)

barretenberg/cpp/src/barretenberg/benchmark/client_ivc_bench/client_ivc.bench.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using namespace bb;
1414
namespace {
1515

1616
/**
17-
* @brief Benchmark suite for the aztec client PG-Goblin IVC scheme
17+
* @brief Benchmark suite for the aztec client IVC scheme
1818
*/
1919
class ClientIVCBench : public benchmark::Fixture {
2020
public:
@@ -28,7 +28,7 @@ class ClientIVCBench : public benchmark::Fixture {
2828
};
2929

3030
/**
31-
* @brief Benchmark only the verification work for the PG-Goblin IVC protocol
31+
* @brief Benchmark only the verification work for the IVC protocol
3232
*/
3333
BENCHMARK_DEFINE_F(ClientIVCBench, VerificationOnly)(benchmark::State& state)
3434
{
@@ -42,7 +42,7 @@ BENCHMARK_DEFINE_F(ClientIVCBench, VerificationOnly)(benchmark::State& state)
4242
}
4343

4444
/**
45-
* @brief Benchmark the prover work for the full PG-Goblin IVC protocol
45+
* @brief Benchmark the prover work for the full IVC protocol
4646
*/
4747
BENCHMARK_DEFINE_F(ClientIVCBench, Full)(benchmark::State& state)
4848
{

barretenberg/cpp/src/barretenberg/benchmark/pippenger_bench/pippenger.bench.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ using G1 = Curve::AffineElement;
3030
using Element = Curve::Element;
3131
namespace {
3232
/**
33-
* @brief Benchmark suite for the aztec client PG-Goblin IVC scheme
33+
* @brief Benchmark suite for Pippenger scalar multiplication
3434
*/
3535
class PippengerBench : public benchmark::Fixture {
3636
public:
@@ -55,7 +55,7 @@ class PippengerBench : public benchmark::Fixture {
5555
};
5656

5757
/**
58-
* @brief Benchmark the prover work for the full PG-Goblin IVC protocol
58+
* @brief Benchmark the prover work for Pippenger scalar multiplication
5959
*/
6060
BENCHMARK_DEFINE_F(PippengerBench, Full)(benchmark::State& state)
6161
{

0 commit comments

Comments
 (0)