Skip to content

Commit 0a2dfdc

Browse files
committed
add doxygen
1 parent 84099a0 commit 0a2dfdc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/core/dev_api/openvino/core/bound_evaluation_util.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
5151
OPENVINO_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.
5357
OPENVINO_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.
5561
OPENVINO_API void set_force_invalidation(ov::descriptor::Tensor& tensor);
5662
} // namespace util
5763
} // namespace ov

0 commit comments

Comments
 (0)