Commit 11cab2d5 authored by Alan Turner's avatar Alan Turner
Browse files

Remove copied comments

parent 8a5e3fb0
...@@ -627,7 +627,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle ...@@ -627,7 +627,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle
} }
else if constexpr(is_same_v<ALayout, Col>) else if constexpr(is_same_v<ALayout, Col>)
{ {
// FIXME: not rigorous
if(MRaw_ % ABlockTransferSrcScalarPerVector != 0) if(MRaw_ % ABlockTransferSrcScalarPerVector != 0)
{ {
return false; return false;
...@@ -648,7 +647,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle ...@@ -648,7 +647,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle
} }
else if constexpr(is_same_v<BLayout, Col>) else if constexpr(is_same_v<BLayout, Col>)
{ {
// FIXME: not rigorous
if(KRaw_ % BBlockTransferSrcScalarPerVector != 0) if(KRaw_ % BBlockTransferSrcScalarPerVector != 0)
{ {
return false; return false;
...@@ -669,7 +667,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle ...@@ -669,7 +667,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle
} }
else if constexpr(is_same_v<B1Layout, Col>) else if constexpr(is_same_v<B1Layout, Col>)
{ {
// FIXME: not rigorous
if(NRaw_ % B1BlockTransferSrcScalarPerVector != 0) if(NRaw_ % B1BlockTransferSrcScalarPerVector != 0)
{ {
return false; return false;
...@@ -690,7 +687,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle ...@@ -690,7 +687,6 @@ struct DeviceBatchedGemmSoftmaxGemm_Xdl_CShuffle
} }
else if constexpr(is_same_v<CLayout, Col>) else if constexpr(is_same_v<CLayout, Col>)
{ {
// FIXME: not rigorous
if(MRaw_ % CShuffleBlockTransferScalarPerVector_NPerBlock != 0) if(MRaw_ % CShuffleBlockTransferScalarPerVector_NPerBlock != 0)
{ {
return false; return false;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment