Skip to content

Commit d723449

Browse files

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎src/cpu/reorder/simple_reorder.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2016-2024 Intel Corporation
2+
* Copyright 2016-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -176,6 +176,7 @@ inline status_t get_quant_md(memory_desc_t &md, const int ndims,
176176
utils::copy_dims_with_mask(quant_dims, in_dims, ndims, quant_mask,
177177
/* fill_with_ones = */ true);
178178
if (ndims >= 2) {
179+
if (utils::one_of(0, g0, g1)) return status::runtime_error;
179180
quant_dims[ndims - 1] /= g1;
180181
quant_dims[ndims - 2] /= g0;
181182
}

‎src/cpu/reorder/simple_sparse_reorder.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ struct simple_sparse_reorder_impl<SIMPLE_SPARSE_REORDER_TEMPL_CALL,
100100

101101
static size_t get_scratchpad_size(const memory_desc_wrapper &input_d,
102102
const memory_desc_wrapper &output_d) {
103-
const auto nelems = static_cast<size_t>(output_d.nelems(true));
103+
const auto nelems = output_d.nelems(true);
104104
const auto tmp_output_sz = nelems * output_d.data_type_size();
105105
const auto nnz_per_blocks_sz
106106
= nelems / output_d.blk_size() * sizeof(dim_t);

‎src/cpu/x64/jit_uni_binary_kernel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ size_t binary_kernel_t::get_tail_size() const {
5858
const auto &dims = src0_d.dims();
5959
const auto &ndims = src0_d.ndims();
6060

61-
size_t nelems = 0;
61+
dim_t nelems = 0;
6262

6363
if (ndims == 1)
6464
nelems = dims[0];

0 commit comments

Comments
 (0)
Please sign in to comment.