Class ov::op::v9::IRDFT#

class IRDFT : public ov::op::util::FFTBase#

An operation IRDFT that computes the discrete inverse complex-to-real Fourier transformation.

Public Functions

IRDFT(const Output<Node> &data, const Output<Node> &axes)#

Constructs a IRDFT operation. IRDFT is performed for full size axes.

Parameters:
  • dataInput data

  • axes – Axes to perform IRDFT

IRDFT(const Output<Node> &data, const Output<Node> &axes, const Output<Node> &signal_size)#

Constructs a IRDFT operation.

Parameters:
  • dataInput data

  • axes – Axes to perform IRDFT

  • signal_size – Signal sizes for ‘axes’

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.