-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[BUG?] Behavior change of local_tile
from 3.3.0
#1201
Comments
There was a subtle design change for consistency and correctness, yes. The implementation of
Previously, the Thus, you're getting the 0th 8x4 tile of the 128x4x2 tensor. You can retrieve the old behavior by using one of the following:
|
Describe the bug
I am not quite sure if it is a bug or design change, but a behavior change is observed in commit c008b4a (cutlass 3.3.0).
Steps/Code to reproduce bug
Before the commit, the code print a layout
(_8,_4,_1,_2):(_1,_128,_0,_512)
.Since the commit, the code print (_8,_4):(_1,_128).
Expected behavior
The old layout should be print. Or maybe? Please elobrate.
The text was updated successfully, but these errors were encountered: