From 3824dd4d29c107117cd3d7c3ca2df1b63c96a6ed Mon Sep 17 00:00:00 2001 From: Johannes Wirth Date: Mon, 6 Oct 2025 17:47:50 +0200 Subject: [PATCH] fix scheduling parameters --- .../tgc/hammer/tasks/longnail/SchedulingParameters.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolflow/src/main/scala/com/minres/tgc/hammer/tasks/longnail/SchedulingParameters.scala b/toolflow/src/main/scala/com/minres/tgc/hammer/tasks/longnail/SchedulingParameters.scala index 0c03a1f..0d0aa07 100644 --- a/toolflow/src/main/scala/com/minres/tgc/hammer/tasks/longnail/SchedulingParameters.scala +++ b/toolflow/src/main/scala/com/minres/tgc/hammer/tasks/longnail/SchedulingParameters.scala @@ -29,6 +29,6 @@ class SchedulingParameters extends OptionGroup { } val schedule = add(new ScheduleOptions) - val maxLoopUnrollFactor = value[Int](cliName = "--maxLoopUnrollFactor", toolName = "max-unroll-factor", default = () => Some(16), descr = "Longnail max loop unroll factor") - val schedulingSolutionFile = value[Path](cliName = "--schedulingMLIR", toolName = "o", default = () => Some(OUT_DIR / "scheduling_solutions.mlir"), descr = "Output file with different scheduling solutions") + val maxLoopUnrollFactor = value[Int](cliName = "maxLoopUnrollFactor", toolName = "--max-unroll-factor", default = () => Some(16), descr = "Longnail max loop unroll factor") + val schedulingSolutionFile = value[Path](cliName = "schedulingMLIR", toolName = "--o", default = () => Some(OUT_DIR / "scheduling_solutions.mlir"), descr = "Output file with different scheduling solutions") }