diff --git a/src/frontends/tests/frontend/shared/test_builtin_extensions/builtin_extensions.cpp b/src/frontends/tests/frontend/shared/test_builtin_extensions/builtin_extensions.cpp index 511e60a3e3ca94..fa7f996d3bb1c4 100644 --- a/src/frontends/tests/frontend/shared/test_builtin_extensions/builtin_extensions.cpp +++ b/src/frontends/tests/frontend/shared/test_builtin_extensions/builtin_extensions.cpp @@ -67,6 +67,7 @@ ov::OutputVector ReluToSwishTranslator(const ov::frontend::NodeContext& node) { return {std::make_shared(node.get_input(0))}; } +#ifdef ENABLE_OV_PADDLE_FRONTEND std::map ReluToSwishTranslatorPDPD(const ov::frontend::NodeContext& node) { return {{"Out", {std::make_shared(node.get_input("X"))}}}; } @@ -81,7 +82,7 @@ std::map Relu6ToReluTranslatorPaddle(const ov::fr ret["Out"] = {relu}; return ret; } - +#endif } // namespace class CustomElu : public ov::op::Op {