| 140 | } |
| 141 | |
| 142 | std::shared_ptr<OpDef> CustomOpDefFactory::create_opdef( |
| 143 | const std::string& op_type) const { |
| 144 | auto op = ops->find(op_type); |
| 145 | return std::make_shared<CustomOpDef>(op); |
| 146 | } |
| 147 | |
| 148 | std::shared_ptr<OpDef> CustomOpDefFactory::create_opdef( |
| 149 | const custom::RunTimeId& op_id) const { |