You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the above snippet from sgemm_2.cu, I got the following from partitioning sA via ThrCopy:
sA:
smem_ptr[32b](0x6ffff4000000) o (_128,_8):(_1,_128)
tAsA:
smem_ptr[32b](0x6ffff4000ff0) o ((_4,_1),_1,_1):((_1,_0),_0,_0)
How to interpret those _0 in tAsA? In the tutorial, there was a mentioning that _0 in the dimensions of tAsA indicates a dimension with size 1 where the exact stride is not crucial, allowing it to be any value. But if we follow the coordinate-to-index mapping equation (index = shapes .* strides), _0 could also be interpreted as that the tensor is being broadcasted along that dimension?
Will the meaning of _0 change depending on the print scenario or it always means ignore the stride in this dimension?
The text was updated successfully, but these errors were encountered:
This issue has been labeled inactive-30d due to no recent activity in the past 30 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be labeled inactive-90d if there is no activity in the next 60 days.
This issue has been labeled inactive-90d due to no recent activity in the past 90 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed.
What is your question?
From the above snippet from sgemm_2.cu, I got the following from partitioning sA via ThrCopy:
How to interpret those _0 in tAsA? In the tutorial, there was a mentioning that
_0
in the dimensions of tAsA indicates a dimension with size 1 where the exact stride is not crucial, allowing it to be any value. But if we follow the coordinate-to-index mapping equation (index = shapes .* strides), _0 could also be interpreted as that the tensor is being broadcasted along that dimension?Will the meaning of _0 change depending on the print scenario or it always means
ignore the stride in this dimension
?The text was updated successfully, but these errors were encountered: