Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli committed Sep 13, 2023
1 parent 2f12210 commit 456a61f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <ngraph/ngraph.hpp>
#include "low_precision/layer_transformation.hpp"

namespace ngraph {
namespace ov {
namespace pass {
namespace low_precision {

Expand All @@ -31,4 +31,4 @@ class LP_TRANSFORMATIONS_API BatchToSpaceTransformation : public LayerTransforma

} // namespace low_precision
} // namespace pass
} // namespace ngraph
} // namespace ov
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <ngraph/ngraph.hpp>
#include "low_precision/layer_transformation.hpp"

namespace ngraph {
namespace ov {
namespace pass {
namespace low_precision {

Expand All @@ -31,4 +31,4 @@ class LP_TRANSFORMATIONS_API SpaceToBatchTransformation : public LayerTransforma

} // namespace low_precision
} // namespace pass
} // namespace ngraph
} // namespace ov
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include "low_precision/network_helper.hpp"
#include "itt.hpp"

namespace ngraph {
namespace ov {
namespace pass {
namespace low_precision {

Expand Down Expand Up @@ -61,4 +61,4 @@ bool BatchToSpaceTransformation::isPrecisionPreserved(std::shared_ptr<Node> laye

} // namespace low_precision
} // namespace pass
} // namespace ngraph
} // namespace ov
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "low_precision/network_helper.hpp"
#include "itt.hpp"

namespace ngraph {
namespace ov {
namespace pass {
namespace low_precision {

Expand Down Expand Up @@ -62,4 +62,4 @@ bool SpaceToBatchTransformation::isPrecisionPreserved(std::shared_ptr<Node> laye

} // namespace low_precision
} // namespace pass
} // namespace ngraph
} // namespace ov
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class BatchToSpaceTransformation : public LayerTransformation,
test_values.actual.dequantization_after);

SimpleLowPrecisionTransformer transform;
transform.add<ngraph::pass::low_precision::BatchToSpaceTransformation>(test_values.params);
transform.add<ov::pass::low_precision::BatchToSpaceTransformation>(test_values.params);
transform.transform(actualFunction);

referenceFunction = ngraph::builder::subgraph::BatchToSpaceFunction::get(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class SpaceToBatchTransformation : public LayerTransformation, public testing::W
test_values.actual.dequantization_after);

SimpleLowPrecisionTransformer transform;
transform.add<ngraph::pass::low_precision::SpaceToBatchTransformation>(test_values.params);
transform.add<ov::pass::low_precision::SpaceToBatchTransformation>(test_values.params);
transform.transform(actualFunction);

referenceFunction = ngraph::builder::subgraph::SpaceToBatchFunction::get(
Expand Down

0 comments on commit 456a61f

Please sign in to comment.