Skip to content

Commit

Permalink
perf fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-paramuzov committed Sep 18, 2024
1 parent b6fdc45 commit f90b98c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ struct ConcatenationImplementationManager : public ImplementationManager {
static const std::vector<ov::element::Type_t> supported_types = { ov::element::f16, ov::element::u8, ov::element::i8 };
static const std::vector<format::type> supported_in_fmts = {
format::any,
format::bfyx,
format::byxf,
format::b_fs_yx_fsv16,
format::b_fs_yx_fsv32,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct PoolingImplementationManager : public ImplementationManager {
auto in_dt = in_layout.data_type;
auto out_dt = out_layout.data_type;

if (!in_layout.data_padding || out_layout.data_padding)
if (in_layout.data_padding || out_layout.data_padding)
return false;

static const std::vector<format::type> supported_formats = {
Expand Down

0 comments on commit f90b98c

Please sign in to comment.