fix copy-paste bug in get_matrix_b; re-enable all tests in multi_abd (#2939)

This commit is contained in:
emezh
2025-09-26 22:55:18 -04:00
committed by GitHub
parent ee9769616a
commit 2aa06fbd45
3 changed files with 83 additions and 89 deletions

View File

@@ -224,7 +224,7 @@ bool profile_gemm_multi_abd_impl(int do_verification,
auto get_b_matrix = [&]() -> auto {
// in case of pass through we avoid allocating a new
// tensor and copying values
if constexpr(is_same_v<AElementOp, PassThrough>)
if constexpr(is_same_v<BElementOp, PassThrough>)
{
return bs_k_n(Number<0>{});
}