| 543 | explicit Kernel(PD_Kernel* kernel) : WrapperBase<PD_Kernel>(kernel) {} |
| 544 | |
| 545 | KernelArgsDef args_def() const { |
| 546 | C_Status status; |
| 547 | auto ptr = PD_KernelGetArgsDef(raw_data(), &status); |
| 548 | PD_CHECK_STATUS(status); |
| 549 | return KernelArgsDef(ptr); |
| 550 | } |
| 551 | |
| 552 | TensorArgDef InputAt(size_t idx) { return args_def().input_defs()[idx]; } |
| 553 |