Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli committed Sep 14, 2023
1 parent 67a4d9c commit 1c9542d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <utility>
#include <transformations/utils/utils.hpp>
#include <transformations/init_node_info.hpp>
#include "low_precision/multiply.hpp"
#include "low_precision/multiply_partial.hpp"
#include "lpt_ngraph_functions/common/dequantization_operations.hpp"

#include "common_test_utils/ov_test_utils.hpp"
Expand Down Expand Up @@ -54,8 +54,9 @@ class MultiplyPartialTransformation : public LayerTransformation, public testing
const MultiplyPartialTransformationTestValues testParams = std::get<1>(GetParam());

actualFunction = MultiplyPartialFunction::get(precision, testParams.actual);

SimpleLowPrecisionTransformer transform;
transform.add<ngraph::pass::low_precision::MultiplyTransformation, ov::op::v1::Multiply>(testParams.transformationParams);
transform.add<ngraph::pass::low_precision::MultiplyPartialTransformation, ov::op::v1::Multiply>(testParams.transformationParams);
transform.transform(actualFunction);

referenceFunction = MultiplyPartialFunction::get(precision, testParams.expected);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
#include "simple_low_precision_transformer.hpp"
#include "lpt_ngraph_functions/multiply_function.hpp"

#include "ngraph/pass/serialize.hpp"

namespace {
using namespace testing;
using namespace ov;
Expand Down

0 comments on commit 1c9542d

Please sign in to comment.