Generates the C++ function signature for the 'parse ' function, which handles deserialization for a specific cuda_tile operation.
| 254 | /// Generates the C++ function signature for the 'parse<OpName>' function, |
| 255 | /// which handles deserialization for a specific cuda_tile operation. |
| 256 | static void generateFunctionSignature(const Operator &op, raw_ostream &os) { |
| 257 | os << llvm::formatv(functionSignatureTemplate, op.getCppClassName()); |
| 258 | } |
| 259 | |
| 260 | /// Generates C++ code within the 'parse<OpName>' function to deserialize the |
| 261 | /// operands of the given operation. |