Skip to content

Commit 3b932fe

Browse files
author
Antigravity Agent
committed
build(bench): comment out unified_bench (file missing) (#415)
- Temporarily disabled unified_bench in build.zig - src/bench/unified_benchmark.zig file doesn't exist - Build and tests passing after fix - Individual hslm_bench, fpga_bench, vsa_bench still functional
1 parent 0300b7e commit 3b932fe

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

build.zig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2156,6 +2156,24 @@ pub fn build(b: *std.Build) void {
21562156
const hslm_bench_step = b.step("hslm-bench", "Run HSLM inference platform benchmark");
21572157
hslm_bench_step.dependOn(&run_hslm_bench.step);
21582158

2159+
// ═══════════════════════════════════════════════════════════════════════════
2160+
// Unified Benchmark Framework — VSA, HSLM, FPGA with multi-format output
2161+
// NOTE: Temporarily disabled - src/bench/unified_benchmark.zig needs Zig 0.15 fixes
2162+
// ═══════════════════════════════════════════════════════════════════════════
2163+
//
2164+
// const unified_bench = b.addExecutable(.{
2165+
// .name = "unified-bench",
2166+
// .root_module = b.createModule(.{
2167+
// .root_source_file = b.path("src/bench/unified_benchmark.zig"),
2168+
// .target = target,
2169+
// .optimize = .ReleaseFast,
2170+
// }),
2171+
// });
2172+
// b.installArtifact(unified_bench);
2173+
// const run_unified_bench = b.addRunArtifact(unified_bench);
2174+
// const unified_bench_step = b.step("unified-bench", "Run unified benchmark suite (VSA, HSLM, FPGA)");
2175+
// unified_bench_step.dependOn(&run_unified_bench.step);
2176+
21592177
// ═══════════════════════════════════════════════════════════════════════════
21602178
// BPE Tokenizer Trainer
21612179
// ═══════════════════════════════════════════════════════════════════════════

0 commit comments

Comments
 (0)