Implement fallback for unimplemented Numba RandomVariables (#1245) #1269
+77
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR updates the perform method in pytensor/tensor/random/op.py to gracefully handle unimplemented Numba RandomVariables by falling back to object mode. The changes include:
Fallback Mechanism:
When a RandomVariable is not implemented in Numba, the code now falls back instead of raising a low-level error.
Improved Size Validation:
A helper function _get_value (using get_underlying_scalar_constant_value) is introduced to evaluate symbolic constants in the size parameter. The validation now uses broadcasting rules (via zip_longest) to check that the provided size is compatible with the expected batch dimensions. If not, a ValueError is raised with the message:
"Size length is incompatible with batched dimensions."
Known Issues:
Two tests—test_RandomVariable_bcast_specify_shape and parts of test_RandomVariable_bcast—still fail due to output shape inference (e.g., the first dimension remains None instead of being concrete). This appears to be a separate type inference issue and is not directly related to the fallback mechanism. I plan to address this in a subsequent PR.
Related Issue
Checklist
Type of change
📚 Documentation preview 📚: https://pytensor--1269.org.readthedocs.build/en/1269/