-
Notifications
You must be signed in to change notification settings - Fork 133
Moved logsumexp #351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved logsumexp #351
Conversation
Any tests and rewrites (like |
I now moved local_logsumexp to special.py and test_logsumexp to tests/tensor/test_special.py. Are there any other tests or functions which need to be moved? |
Thanks @KladeRe, I think the only other thing are the tests here: pytensor/tests/tensor/rewriting/test_math.py Lines 3514 to 3570 in df4183d
|
Alright, everything related to logsumexp is now either in special.py or its tests. |
Motivation for these changes
Closes #350
Implementation details
Moved the function logsumexp and its tests from math.py to special.py and all its dependencies.
Checklist
Major / Breaking Changes
New features
Bugfixes
Documentation
Maintenance