Skip to content

Commit

Permalink
x64: brgemm convolutions: add ih_block to jit_brgemm_conv_conf_t
Browse files Browse the repository at this point in the history
  • Loading branch information
ankalinin committed Apr 18, 2023
1 parent 21bdc21 commit 6d80bb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cpu/x64/jit_primitive_conf.hpp
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 6d80bb4

Please sign in to comment.