From 3d1a8c841d05fb1b867a8956c1e81dd99e7af66b Mon Sep 17 00:00:00 2001 From: openresearch Date: Sat, 4 Jul 2026 21:27:02 +0000 Subject: [PATCH] fix: add --output arg to pipeline_core.py --- scripts/pipeline_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pipeline_core.py b/scripts/pipeline_core.py index 8331c552..1b385014 100644 --- a/scripts/pipeline_core.py +++ b/scripts/pipeline_core.py @@ -468,6 +468,7 @@ if __name__ == "__main__": parser.add_argument("--budget", type=int, default=128) parser.add_argument("--surfaces", type=int, default=64) parser.add_argument("--filter", choices=["crt", "quat"], default="crt") + parser.add_argument("--output", default="pipeline_result.json") args = parser.parse_args() labels = [1, 2, 4, 8, 16, 32, 64, 128]