File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 // ═══════════════════════════════════════════════════════════════════════════
You can’t perform that action at this time.
0 commit comments