OP_ATTR_NAMES
Function Usage
Encapsulates the attribute names of an AI CPU operator.
Prototype
OP_ATTR_NAMES ::op::FVector<std::string>
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
/ |
Input |
Attribute names of an AI CPU operator, which is an FVector of the std::string type. The default value is an empty FVector, that is, OP_ATTR_NAMES(). |
Constraints
None
Example
1 2 | // Encapsulate the three attributes of the AI CPU operator: Tindices, T, and use_locking. OP_ATTR_NAMES({"Tindices", "T", "use_locking"}); |
Parent topic: Common Macros and Classes