| 58 | } |
| 59 | |
| 60 | KernelBase::KernelBase(KernelBase &&from) |
| 61 | : parent_(from.parent_), |
| 62 | implementation_(std::move(from.implementation_)), |
| 63 | name_(std::move(from.name_)), |
| 64 | demangled_name_(std::move(from.demangled_name_)), |
| 65 | metadata_(from.metadata_) { |
| 66 | from.parent_ = nullptr; |
| 67 | } |
| 68 | |
| 69 | KernelBase::KernelBase(StreamExecutor *parent) |
| 70 | : parent_(parent), |
nothing calls this directly
no test coverage detected