-
Notifications
You must be signed in to change notification settings - Fork 54
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
Cannot define an MmaOp
where batch dimension is Broadcast
#2273
Comments
Relevant comment from the PR introducing this check: https://github.com/NVIDIA/Fuser/pull/131/files#r1164511926. It seems we do plan to support this broadcast batch dims, but |
Is this still an issue? |
This does still fail. Now it fails in Lines 1410 to 1415 in 621e146
|
There is no reason for us to check the Mma layout anymore when defining an MmaOp, since that is all handled in the scheduler now. I also added a test where a new batch dimension is broadcasted before defining the MmaOp. Fixes #2273.
There is no reason for us to check the Mma layout anymore when defining an MmaOp, since that is all handled in the scheduler now. I also added a test where a new batch dimension is broadcasted before defining the MmaOp. Fixes #2273.
The following test fails when trying to create an
MmaOp
This caused the failure of
Fuser/tests/cpp/test_combine_mul_sum.cpp
Line 121 in 5228f89
MmaOp
ctor to not balk at such cases.The text was updated successfully, but these errors were encountered: