| 28 | }; |
| 29 | |
| 30 | void DynamicReshapeLikeKernel::ForwardDataContent(KernelContext* ctx) const { |
| 31 | const Blob* in_blob = ctx->BnInOp2Blob("x"); |
| 32 | Blob* out_blob = ctx->BnInOp2Blob("y"); |
| 33 | AutoMemcpy(ctx->stream(), out_blob, in_blob); |
| 34 | } |
| 35 | |
| 36 | REGISTER_KERNEL(OperatorConf::kDynamicReshapeLikeConf, DynamicReshapeLikeKernel); |
| 37 |
nothing calls this directly
no test coverage detected