We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Make our codebase more leightweight by removing:
Replace by symbolic equivalent:
Iv
Op
Ive
The text was updated successfully, but these errors were encountered:
Here is the code to get a list of all Ops (with some base classes in the mix):
from pytensor.graph.op import Op def get_all_subclasses(cls): all_subclasses = [] for subclass in cls.__subclasses__(): all_subclasses.append(subclass) all_subclasses.extend(get_all_subclasses(subclass)) return all_subclasses for op in sorted(set(get_all_subclasses(Op)), key=str): print(op)
Sorry, something went wrong.
No branches or pull requests
Description
Make our codebase more leightweight by removing:
Replace by symbolic equivalent:
Iv
coreOp
in favor ofIve
and add rewrite rule for log of it #1092The text was updated successfully, but these errors were encountered: