7 #include "ngraph/node.hpp"
8 #include "ngraph/op/op.hpp"
23 NGRAPH_RTTI_DECLARATION;
33 virtual std::shared_ptr<Node>
34 clone_with_new_inputs(
const OutputVector& new_args)
const override;
39 const HostTensorVector& inputs)
const override;
Visits the attributes of a node, primarily for serialization-like tasks.
Definition: attribute_visitor.hpp:59
A handle for one of a node's outputs.
Definition: node_output.hpp:33
Root of all actual ops.
Definition: op.hpp:17
Parametrized Relu x < 0 => f(x) = x * slope x >= 0 => f(x) = x.
Definition: prelu.hpp:21
void validate_and_infer_types() override
Verifies that attributes and inputs are consistent and computes output shapes and element types....
bool evaluate(const HostTensorVector &outputs, const HostTensorVector &inputs) const override
Evaluates the op on input_values putting results in output_values.
bool has_evaluate() const override
Allows to get information about availability of evaluate method for the current operation.
PRelu(const Output< Node > &data, const Output< Node > &slope)
Constructs a PRelu operation.
The Intel nGraph C++ API.
Definition: attribute_adapter.hpp:16