Skip to content

Commit 8b9521c

Browse files
committed
Fixed default argument for backend
1 parent d94472d commit 8b9521c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/nutpie/compile_pymc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def expand(x, **shared):
354354
def compile_pymc_model(
355355
model: "pm.Model",
356356
*,
357-
backend: Literal["numba", "jax"] = "numba",
357+
backend: Literal["numba", "jax"] | None = None,
358358
gradient_backend: Literal["pytensor", "jax"] | None = None,
359359
**kwargs,
360360
) -> CompiledModel:

0 commit comments

Comments
 (0)