Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/trans' into trans
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Sep 17, 2023
2 parents 2a2105f + fd338ee commit f7b6dbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/snippets/src/pass/hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static uint64_t hash_combine(uint64_t seed, const T &v) {
namespace rt_info {

// some node attr is not type of ov::RuntimeAttribute, need dedicate visitor.
const std::vector<std::string> list_of_names{
static const std::vector<std::string> list_of_names{
"PrimitivesPriority",
"alt_width",
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "ie_ngraph_utils.hpp"
#include "openvino/core/type/element_type.hpp"
#include "utils/rt_info/memory_formats_attribute.hpp"
#include "transformations/rt_info/primitives_priority_attribute.hpp"
#include "utils/general_utils.h"
#include <cstdint>

Expand Down Expand Up @@ -321,7 +322,7 @@ CPUTestsBase::makeCPUInfo(const std::vector<cpu_memory_format_t>& inFmts,
ov::intel_cpu::OutputMemoryFormats(fmts2str(outFmts, "cpu:"))});
}
if (!priority.empty()) {
cpuInfo.insert({"PrimitivesPriority", impls2str(priority)});
cpuInfo.insert({ov::PrimitivesPriority::get_type_info_static(), impls2str(priority)});
}

cpuInfo.insert({"enforceBF16evenForGraphTail", true});
Expand Down

0 comments on commit f7b6dbc

Please sign in to comment.