File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/core/dev_api/openvino/core Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,14 @@ OPENVINO_API Tensor evaluate_upper_bound(const Output<Node>& output);
5050// / \return pair with Tensors for lower and upper value estimation.
5151OPENVINO_API std::pair<Tensor, Tensor> evaluate_both_bounds (const Output<Node>& output);
5252
53+ // / \brief Compares bounds (lower and upper values) of two tensors.
54+ // / \param lhs First tensor to compare.
55+ // / \param rhs Second tensor to compare.
56+ // / \return True if both tensors have the same lower and upper bound values, false otherwise.
5357OPENVINO_API bool have_same_bounds (const descriptor::Tensor& lhs, const descriptor::Tensor& rhs);
5458
59+ // / \brief Sets ForceInvalidation attribute on tensor to force bounds invalidation on next invalidate_values() call.
60+ // / \param tensor Tensor to set the ForceInvalidation attribute on.
5561OPENVINO_API void set_force_invalidation (ov::descriptor::Tensor& tensor);
5662} // namespace util
5763} // namespace ov
You can’t perform that action at this time.
0 commit comments