DynamicInputRegister
Applicability
Product |
Supported or Not |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Header File/Library File
- Header file: #include <graph/operator.h>
- Library file: libgraph.so
Function Usage
Registers the dynamic inputs of an operator.
Prototype
1 2 | void DynamicInputRegister(const char_t *name, const uint32_t num, bool is_push_back = true) void DynamicInputRegister(const char_t *name, const uint32_t num, const char_t *datatype_symbol, bool is_push_back = true) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
name |
Input |
Name of the dynamic input of an operator. |
num |
Input |
Number of the dynamic inputs to be added. |
datatype_symbol |
Input |
Data type of the dynamic inputs. |
is_push_back |
Input |
|
Returns
None
Exception Handling
None
Constraints
None
Parent topic: Operator