"docs/vscode:/vscode.git/clone" did not exist on "66722dbea7a2cf50106b03ca3531503a64a3c496"
Unverified Commit ecf337ba authored by Jianfeng Yan's avatar Jianfeng Yan Committed by GitHub
Browse files

fixed issue164 (#165)

* fixed issue164

* removed prints
parent f015c776
...@@ -129,7 +129,7 @@ struct DeviceBatchedGemmXdl ...@@ -129,7 +129,7 @@ struct DeviceBatchedGemmXdl
} }
else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, ALayout>::value) else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, ALayout>::value)
{ {
return make_naive_tensor_descriptor(make_tuple(M, K), make_tuple(I1, M)); return make_naive_tensor_descriptor(make_tuple(M, K), make_tuple(I1, StrideA));
} }
}(); }();
...@@ -158,7 +158,7 @@ struct DeviceBatchedGemmXdl ...@@ -158,7 +158,7 @@ struct DeviceBatchedGemmXdl
} }
else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, BLayout>::value) else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, BLayout>::value)
{ {
return make_naive_tensor_descriptor(make_tuple(K, N), make_tuple(I1, K)); return make_naive_tensor_descriptor(make_tuple(K, N), make_tuple(I1, StrideB));
} }
}(); }();
...@@ -183,7 +183,7 @@ struct DeviceBatchedGemmXdl ...@@ -183,7 +183,7 @@ struct DeviceBatchedGemmXdl
} }
else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, CLayout>::value) else if constexpr(is_same<tensor_layout::gemm::ColumnMajor, CLayout>::value)
{ {
return make_naive_tensor_descriptor(make_tuple(M, N), make_tuple(I1, M)); return make_naive_tensor_descriptor(make_tuple(M, N), make_tuple(I1, StrideC));
} }
}(); }();
......
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