Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyamin-Roman committed May 30, 2024
1 parent f8b6e3c commit be55fe3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,8 @@ class PatternValidator {
return false;
}

if (ele_type == ov::element::i32 || ele_type == ov::element::f32 || ele_type == ov::element::f16 || ele_type == ov::element::i64) {
if (ele_type == ov::element::i32 || ele_type == ov::element::i64 || ele_type == ov::element::f16 ||
ele_type == ov::element::f32) {
auto observed = constop->cast_vector<double>();
for (size_t i = 0; i < symbols.size(); i++)
detail::add_symbol_observed(sov, symbols[i], observed[i]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

#include "itt.hpp"
#include "openvino/core/rt_info.hpp"
#include "openvino/op/util/shape_of_base.hpp"
#include "openvino/opsets/opset1.hpp"
#include "openvino/opsets/opset6.hpp"
#include "openvino/opsets/opset8.hpp"
#include "openvino/op/util/shape_of_base.hpp"
#include "openvino/pass/pattern/matcher.hpp"
#include "openvino/pass/pattern/op/or.hpp"
#include "openvino/pass/pattern/op/wrap_type.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ KernelsData RoPEKernelBase::GetCommonKernelsData(const Params& params) const {
EXE_MODE_DEFAULT,
false,
false,
orgParams.num_of_inputs,
static_cast<int>(orgParams.num_of_inputs),
GetFusedPrimitiveInputsCount(params),
1,
orgParams.outputs[0].is_dynamic());
Expand Down

0 comments on commit be55fe3

Please sign in to comment.