Skip to content

Commit 8f07777

Browse files
committed
cpu: coverity: cast to avoid overflow
1 parent edaf885 commit 8f07777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/rnn/ref_rnn.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ status_t dnnl::impl::cpu::_ref_rnn_common_t<aprop, src_type, weights_type,
228228

229229
if (rnn_.use_matmul) {
230230
{ // init layer matmuls
231-
const dim_t M = rnn_.n_gates * rnn_.dhc;
231+
const dim_t M = static_cast<dim_t>(rnn_.n_gates) * rnn_.dhc;
232232
const dim_t N = rnn_.mb;
233233
const dim_t K = rnn_.slc;
234234
const dim_t LDA = rnn_.weights_layer_ld;

0 commit comments

Comments
 (0)