"vscode:/vscode.git/clone" did not exist on "712ef19b6b0cd4db95dff31a7320ff9be92eac5a"
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
}
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
}
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
}
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