| 29 | MGB_DYN_TYPE_OBJ_FINAL_IMPL(OprReaderForTest); |
| 30 | |
| 31 | OprReaderForTest::OprReaderForTest(VarNode* input, const OperatorNodeConfig& config) |
| 32 | : Super(input->owner_graph(), config, "opr_reader", {input}) { |
| 33 | add_input({input}); |
| 34 | add_output(None); |
| 35 | } |
| 36 | |
| 37 | SymbolVar OprReaderForTest::make(SymbolVar input, const OperatorNodeConfig& config) { |
| 38 | return input.insert_single_output_opr<OprReaderForTest>(input.node(), config); |
nothing calls this directly
no test coverage detected