Commit 6a98d9d
committed
[BUG] Replace deprecated batched_dot with pt.sum in KroneckerNormal
- Fixes Issue #7878
- Replace pt.batched_dot(sqrt_quad.T, sqrt_quad.T) with pt.sum(sqrt_quad.T ** 2, axis=-1)
- Computes squared norm per sample using modern PyTensor operations
- Eliminates deprecation warnings and ensures future compatibility1 parent 3a0186e commit 6a98d9d
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2124 | 2124 | | |
2125 | 2125 | | |
2126 | 2126 | | |
2127 | | - | |
2128 | | - | |
| 2127 | + | |
| 2128 | + | |
2129 | 2129 | | |
2130 | 2130 | | |
2131 | 2131 | | |
| |||
0 commit comments