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
Given 3 instructions in the body of a stencil apply:
1 2 3
The current unrolling strategy copies the three instructions as a block, as follows:
1 2 3 1 2 3
Interleaved unrolling on the other hand would be:
1 1 2 2 3 3
There are possibly both. positive and negative, performance impacts that come with this change, so we should implement it and measure.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given 3 instructions in the body of a stencil apply:
1
2
3
The current unrolling strategy copies the three instructions as a block, as follows:
1
2
3
1
2
3
Interleaved unrolling on the other hand would be:
1
1
2
2
3
3
There are possibly both. positive and negative, performance impacts that come with this change, so we should implement it and measure.
The text was updated successfully, but these errors were encountered: