Skip to content

Commit

Permalink
[Transformations] Support precision conversion for PriorBoxClustered
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyamin-Roman committed Dec 20, 2023
1 parent 8384279 commit d0e4c76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ bool ov::pass::ConvertPrecision::run_on_model(const std::shared_ptr<ov::Model>&
{opset8::RandomUniform::get_type_info_static(), fuse_type_to_random_uniform_v8},
{opset13::Multinomial::get_type_info_static(), fuse_type_to_multinomial_v13},
{opset1::PriorBox::get_type_info_static(), fuse_type_to_prior_box<opset1::PriorBox>},
{opset8::PriorBox::get_type_info_static(), fuse_type_to_prior_box<opset8::PriorBox>}};
{opset8::PriorBox::get_type_info_static(), fuse_type_to_prior_box<opset8::PriorBox>},
{opset1::PriorBoxClustered::get_type_info_static(), fuse_type_to_prior_box<opset1::PriorBoxClustered>}};

for (const auto& it : m_additional_type_to_fuse_map) {
type_to_fuse[it.first] = it.second;
Expand Down
1 change: 0 additions & 1 deletion src/plugins/intel_gpu/src/graph/primitive_inst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "condition_inst.h"
#include "gather_inst.h"
#include "experimental_detectron_roi_feature_extractor_inst.hpp"
#include "non_max_suppression_inst.h"
#include "implementation_map.hpp"
#include "graph_optimizer/prepare_buffer_fusing.h"

Expand Down

0 comments on commit d0e4c76

Please sign in to comment.