Skip to content

Commit c63744b

Browse files
committed
fix(cli): point NumPy parity users to --reference
1 parent 4f4b6c2 commit c63744b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/fast_mlsirm/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def _main(argv: list[str] | None = None) -> int:
241241
fit_cmd.add_argument("--max-iter", type=int, default=100, help="Maximum number of iterations for the optimizer (default: 100).")
242242
fit_cmd.add_argument("--n-restarts", type=int, default=1, help="Number of random restarts (default: 1).")
243243
fit_cmd.add_argument("--seed", type=int, default=1, help="Random seed for fitting (default: 1).")
244-
fit_cmd.add_argument("--backend", choices=["rust", "auto"], default="auto", help="Rust numerical owner to use (default: auto; fails closed otherwise; pass numpy only for the explicit reference/parity path).")
244+
fit_cmd.add_argument("--backend", choices=["rust", "auto"], default="auto", help="Rust numerical owner to use (default: auto; fails closed otherwise; use --reference for the explicit NumPy parity path).")
245245
fit_cmd.add_argument("--reference", action="store_true", help="Use the explicit non-production NumPy parity reference.")
246246
fit_cmd.add_argument("--rust-device", choices=["auto", "cpu", "gpu"], default="auto", help="Execution device for the Rust backend (default: auto). Ignored by --reference.")
247247
fit_cmd.add_argument("--out", required=True, help="Directory path to save the fitted parameters.")

0 commit comments

Comments
 (0)