Open zhoutianzi666 opened 2 months ago
The last parameter to make_tiled_mma
was updated to be the full MMA Tile shape/permutation.
You can likely either omit it, or use the Shape that you actually intend:
using MMA = decltype(make_tiled_mma(mma_atom{}, MMA_EU_RepeatT{}));
or
using MMA_P_T = Tile<_16, _8, _32>; // 16x8x32 Value Tile for a 16x8x16 Atom
using MMA = decltype(make_tiled_mma(mma_atom{}, MMA_EU_RepeatT{}, MMA_P_T{}));
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.
Describe the bug
my code compiles well in
git reset --hard v3.2.1
, but errorsgit reset --hard v3.4.1
Steps/Code to reproduce bug Follow this guide http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports to craft a minimal bug report. This helps us reproduce the issue you're having and resolve the issue more quickly.
Expected behavior A clear and concise description of what you expected to happen.
Environment details (please complete the following information):
Additional context Add any other context about the problem here.