Skip to content

Commit 6b6492b

Browse files
committed
Revert "cpu: x64: matmul: add missing VDISPATCH_REORDER_IC check"
This reverts commit 5f9c218.
1 parent 26f5e78 commit 6b6492b

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/cpu/x64/matmul/brgemm_matmul_reorders.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,10 @@ status_t calculate_plain_transpose_blocks(dim_t &batch, dim_t &M, dim_t &K,
7979
}
8080

8181
memory_desc_t src_md_reduced, dst_md_reduced;
82-
VDISPATCH_REORDER_IC(memory_desc_reshape(src_md_reduced, src_md,
83-
non_unit_dim, non_unit_dims),
84-
VERBOSE_UNSUPPORTED_TENSOR_LAYOUT, "src");
85-
VDISPATCH_REORDER_IC(memory_desc_reshape(dst_md_reduced, dst_md,
86-
non_unit_dim, non_unit_dims),
87-
VERBOSE_UNSUPPORTED_TENSOR_LAYOUT, "dst");
82+
CHECK(memory_desc_reshape(
83+
src_md_reduced, src_md, non_unit_dim, non_unit_dims));
84+
CHECK(memory_desc_reshape(
85+
dst_md_reduced, dst_md, non_unit_dim, non_unit_dims));
8886

8987
const memory_desc_wrapper id(src_md_reduced), od(dst_md_reduced);
9088

0 commit comments

Comments
 (0)