ONE - On-device Neural Engine
Loading...
Searching...
No Matches
mir::ops::InputOp Class Reference

#include <InputOp.h>

Collaboration diagram for mir::ops::InputOp:

Public Member Functions

 InputOp (const Shape &shape)
 
 InputOp (const TensorType &type)
 
OperationcopyWithInputs (const std::vector< Output * > &input) override
 
- Public Member Functions inherited from mir::Operation
virtual ~Operation ()=default
 
Type getType () const
 
std::size_t getId () const
 
void setId (std::size_t id)
 
std::size_t getNumInputs () const
 
std::size_t getNumOutputs () const
 
std::deque< Output * > & getInputs ()
 
const std::deque< Output * > & getInputs () const
 
std::deque< Output > & getOutputs ()
 
const std::deque< Output > & getOutputs () const
 
OutputgetInput (std::size_t index)
 
const OutputgetInput (std::size_t index) const
 
OutputgetOutput (std::size_t index)
 
const OutputgetOutput (std::size_t index) const
 
const ShapegetInputShape (std::size_t index) const
 
const ShapegetOutputShape (std::size_t index) const
 
void accept (IVisitor *v)
 

Additional Inherited Members

- Public Types inherited from mir::Operation
enum class  Type { HANDLE_OP }
 
- Protected Member Functions inherited from mir::Operation
 Operation (Type type, const std::vector< Output * > &inputs, std::size_t num_outputs=1)
 
void setOutputType (std::size_t index, const TensorType &type)
 

Detailed Description

Definition at line 27 of file InputOp.h.

Constructor & Destructor Documentation

◆ InputOp() [1/2]

mir::ops::InputOp::InputOp ( const Shape shape)
inlineexplicit

Definition at line 31 of file InputOp.h.

31 : Operation(Type::input, {})
32 {
33 setOutputType(0, {mir::DataType::UNKNOWN, shape});
34 }
void setOutputType(std::size_t index, const TensorType &type)
Definition Operation.h:172

◆ InputOp() [2/2]

mir::ops::InputOp::InputOp ( const TensorType type)
inlineexplicit

Definition at line 36 of file InputOp.h.

36: Operation(Type::input, {}) { setOutputType(0, type); }

Member Function Documentation

◆ copyWithInputs()

Operation * mir::ops::InputOp::copyWithInputs ( const std::vector< Output * > &  input)
inlineoverridevirtual

Implements mir::Operation.

Definition at line 38 of file InputOp.h.

39 {
40 assert(false && "copying graph input is not allowed");
41 (void)input;
42 return nullptr;
43 }

The documentation for this class was generated from the following file: