Getting Started
Frameworks
Guides
Support
helper structure to represent Custom op input.
//! helper struct for input to op struct InputDesc { //! input type, e.g: Tensor, Scalar.. input_type type; //! input index unsigned index; };
Input to custom op type: Tensor, Scalar, User Param:
input_type type;
Index of the input to Op:
unsigned index;