Introduce setters for opset1::Clamp op (#13313)

Ticket: 90621
This commit is contained in:
Evgenya Stepyreva
2022-10-04 10:13:59 +04:00
committed by GitHub
parent 846d8e4605
commit 67ad21da52

View File

@@ -40,6 +40,12 @@ public:
double get_max() const {
return m_max;
}
void set_min(const double& x) {
m_min = x;
}
void set_max(const double& x) {
m_max = x;
}
OPENVINO_SUPPRESS_DEPRECATED_START
bool evaluate(const HostTensorVector& outputs, const HostTensorVector& inputs) const override;
OPENVINO_SUPPRESS_DEPRECATED_END