"tools/git@developer.sourcefind.cn:OpenDAS/torchaudio.git" did not exist on "7c988b438a57a293da63cfc2acbddf4d01b281c5"
Unverified Commit 5b57ab96 authored by Rostyslav Geyyer's avatar Rostyslav Geyyer Committed by GitHub
Browse files

Remove debug asserts (#629)


Co-authored-by: default avatarRosty Geyyer <rosty.geyyer@amd.com>
parent 087e3105
...@@ -77,8 +77,6 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout, ...@@ -77,8 +77,6 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
static auto MakeAGridDescriptor_K0_M_K1(index_t M, index_t K, index_t StrideA) static auto MakeAGridDescriptor_K0_M_K1(index_t M, index_t K, index_t StrideA)
{ {
assert(K % K1 == 0);
const index_t K0 = K / K1; const index_t K0 = K / K1;
const auto a_grid_desc_m_k = [&]() { const auto a_grid_desc_m_k = [&]() {
...@@ -116,8 +114,6 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout, ...@@ -116,8 +114,6 @@ struct DeviceGemmXdl : public DeviceGemm<ALayout,
static auto MakeBGridDescriptor_K0_N_K1(index_t K, index_t N, index_t StrideB) static auto MakeBGridDescriptor_K0_N_K1(index_t K, index_t N, index_t StrideB)
{ {
assert(K % K1 == 0);
const index_t K0 = K / K1; const index_t K0 = K / K1;
const auto b_grid_desc_k_n = [&]() { const auto b_grid_desc_k_n = [&]() {
......
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