Skip to content

Commit 94ea05c

Browse files
committed
removed commented code
1 parent 40fa389 commit 94ea05c

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/common/memory.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -548,10 +548,6 @@ status_t dnnl_memory_create(memory_t **memory, const memory_desc_t *md,
548548
#endif
549549
if (any_null(memory, engine)) return invalid_arguments;
550550

551-
// if (md->format_kind == dnnl_format_sparse) {
552-
// printf("here\n");
553-
// }
554-
555551
memory_desc_t z_md = types::zero_md();
556552
if (md == nullptr) md = &z_md;
557553

src/cpu/x64/jit_brgemm_inner_product.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,6 @@ status_t brgemm_inner_product_fwd_t<isa>::execute_forward(
211211
* 64;
212212
dcomp_params.bitmask_ptr
213213
= weights + jbgp.weight_comp_bitmask_off + wei_offset / 8;
214-
// dcomp_params.bitmask_ptr
215-
// = weights + (jbgp.oc * jbgp.ic) + wei_offset / 8;
216214
const size_t decomp_buf_per_thr = (size_t)jbgp.ic * 64;
217215
auto decomp_buf = decomp_buf_global + ithr * decomp_buf_per_thr;
218216

0 commit comments

Comments
 (0)