Class ov::op::v1::Reverse#

class Reverse : public ov::op::Op#

Reverse operation.

Public Functions

Reverse(const Output<Node> &data, const Output<Node> &reversed_axes, const std::string &mode)#

Constructs a reverse operation.

Parameters:
  • data – The input tensor, some of whose axes are to be reversed.

  • reversed_axes – The axes to reverse in a form of a set of indices or boolean mask.

  • mode – The way reversed_axes should be interpreted - a set or a mask.

virtual void validate_and_infer_types() override#

Verifies that attributes and inputs are consistent and computes output shapes and element types. Must be implemented by concrete child classes so that it can be run any number of times.

Throws if the node is invalid.

inline Mode get_mode() const#
Returns:

The second input data interpretation mode.

virtual bool has_evaluate() const override#

Allows to get information about availability of evaluate method for the current operation.