| 61 | Operator::Operator() : device_type_(DeviceType::kInvalidDevice) {} |
| 62 | |
| 63 | Maybe<void> Operator::Init(const OperatorConf& op_conf) { |
| 64 | return Init(std::make_shared<const OperatorConf>(op_conf)); |
| 65 | } |
| 66 | |
| 67 | Maybe<void> Operator::Init(std::shared_ptr<const OperatorConf> op_conf) { |
| 68 | op_conf_ = std::move(op_conf); |
no test coverage detected