[IE][VPU]: support DTS for Ceiling (#3562)

This commit is contained in:
Andrey Sokolov 2020-12-15 12:32:17 +03:00 committed by GitHub
parent 5da7e8dab8
commit fedd736913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -108,6 +108,7 @@ const Transformations& getDefaultTransformations() {
{ngraph::opset3::Convert::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset3::Clamp::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset3::Floor::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset5::Ceiling::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset3::Log::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset3::Relu::type_info, dynamicToStaticUnaryElementwise},
{ngraph::opset3::ScatterUpdate::type_info, dynamicToStaticUnaryElementwise},

View File

@ -5,6 +5,7 @@
#include <common_test_utils/test_common.hpp>
#include <ngraph_functions/utils/ngraph_helpers.hpp>
#include <ngraph/opsets/opset3.hpp>
#include <ngraph/opsets/opset5.hpp>
#include <vpu/ngraph/operations/dynamic_shape_resolver.hpp>
#include <vpu/ngraph/transformations/dynamic_to_static_shape_unary_elementwise.hpp>
#include <vpu/ngraph/transformations/dynamic_to_static_shape.hpp>
@ -90,6 +91,7 @@ INSTANTIATE_TEST_CASE_P(smoke_NGraph, DynamicToStaticShapeUnaryElementwise, test
testing::Values(
ngraph::opset3::Exp::type_info,
ngraph::opset3::Floor::type_info,
ngraph::opset5::Ceiling::type_info,
ngraph::opset3::Log::type_info,
ngraph::opset3::Relu::type_info,
ngraph::opset3::Sigmoid::type_info,

View File

@ -46,6 +46,7 @@ INSTANTIATE_TEST_CASE_P(smoke_DynamicUnaryElementwise, DSR_UnaryElementwise,
::testing::Values(DataShapeWithUpperBound{ngraph::Shape{8, 800}, ngraph::Shape{10, 1000}}),
::testing::Values(ngraph::opset3::Exp::type_info,
ngraph::opset3::Floor::type_info,
ngraph::opset5::Ceiling::type_info,
ngraph::opset3::Log::type_info,
ngraph::opset3::Relu::type_info,
ngraph::opset3::Sigmoid::type_info,