From 6d80bb48714f8f8d030f055435f5bfde3a382f15 Mon Sep 17 00:00:00 2001 From: Andrey Kalinin Date: Tue, 18 Apr 2023 08:35:09 -0700 Subject: [PATCH] x64: brgemm convolutions: add ih_block to jit_brgemm_conv_conf_t --- src/cpu/x64/jit_primitive_conf.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cpu/x64/jit_primitive_conf.hpp b/src/cpu/x64/jit_primitive_conf.hpp index 212cb7d5eb2..7db70d8d3d8 100644 --- a/src/cpu/x64/jit_primitive_conf.hpp +++ b/src/cpu/x64/jit_primitive_conf.hpp @@ -1,5 +1,5 @@ /******************************************************************************* -* Copyright 2016-2022 Intel Corporation +* Copyright 2016-2023 Intel Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -825,8 +825,8 @@ struct jit_brgemm_conv_conf_t { int mb; int ngroups, ic, oc, oc_without_padding, ic_without_padding; - int od_block, oh_block, nb_od, - nb_oh; // blocking - included in parallelization + int od_block, oh_block, nb_od, nb_oh, + ih_block; // blocking - included in parallelization dim_t inp_buffer_size, inp_buffer_mask_size; conv_brgemm_exec_type_t exec_type;