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
Loop invariant code motion would be a useful optimization. A non-exhaustive list of cases we should handle:
let_stmt
crop_dim
slice_dim
crop_buffer
slice_buffer
allocate
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Loop invariant code motion would be a useful optimization. A non-exhaustive list of cases we should handle:
let_stmt
crop_dim
orslice_dim
crop_buffer
andslice_buffer
have some dimensions that are loop invariant, we should split them up and move the loop invariant dimensions.allocate
(if moving it out of the loop doesn't increase peak memory usage).The text was updated successfully, but these errors were encountered: