Skip to content

Commit

Permalink
Fixed default argument for backend
Browse files Browse the repository at this point in the history
  • Loading branch information
fonnesbeck committed Oct 11, 2024
1 parent d94472d commit 8b9521c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nutpie/compile_pymc.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def expand(x, **shared):
def compile_pymc_model(
model: "pm.Model",
*,
backend: Literal["numba", "jax"] = "numba",
backend: Literal["numba", "jax"] | None = None,
gradient_backend: Literal["pytensor", "jax"] | None = None,
**kwargs,
) -> CompiledModel:
Expand Down

0 comments on commit 8b9521c

Please sign in to comment.