Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions conda_envs/environment-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies:
- scipy
- libblas=*=*mkl
- mkl-service
- pymc>=6.1.0,<6.2
- pytensor>=3.1.2,<3.2
- pymc>=6.2.0,<6.3
- pytensor>=3.2.3,<3.3
- matplotlib
# Docs build deps.
- ipython
Expand Down
4 changes: 2 additions & 2 deletions conda_envs/environment-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ channels:
dependencies:
- python>=3.12
- numpy
- pymc>=6.1.0,<6.2
- pytensor>=3.1.2,<3.2
- pymc>=6.2.0,<6.3
- pytensor>=3.2.3,<3.3
- pytest
- mypy
- polars
Expand Down
4 changes: 2 additions & 2 deletions conda_envs/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ channels:
- conda-forge
dependencies:
- python>=3.12
- pymc>=6.1.0,<6.2
- pytensor>=3.1.2,<3.2
- pymc>=6.2.0,<6.3
- pytensor>=3.2.3,<3.3
- jax
- jaxlib
- optax
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ license = {file = "LICENSE"}
dynamic = ["version"]
dependencies = [
"numpy",
"pymc>=6.1.0,<6.2",
"pytensor>=3.1.2,<3.2"
"pymc>=6.2.0,<6.3",
"pytensor>=3.2.3,<3.3"
]

[project.optional-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_vff_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def test_no_dense_cholesky_on_Kuu():
fmean, fvar = svgp.predict_marginal(X_sym)
fn = pytensor.function([X_sym], [fmean, fvar])
fg = fn.maker.fgraph
shape_of = fg.shape_feature.shape_of
shape_feature = fg.shape_feature
for node in fg.toposort():
if node.op.__class__.__name__ == "Cholesky":
in_shape = shape_of[node.inputs[0]]
in_shape = shape_feature.shape_tuple(node.inputs[0])
resolved = tuple(int(s.data) if hasattr(s, "data") else None for s in in_shape)
assert resolved != (M, M), f"dense MxM Cholesky on Kuu at {node}"

Expand Down
Loading