| 82 | } |
| 83 | |
| 84 | ElemwiseMultiType::NodeProp* ElemwiseMultiType::do_make_node_prop() const { |
| 85 | auto ret = Super::do_make_node_prop(); |
| 86 | for (auto& inp : input()) { |
| 87 | ret->add_dep_type_existing_var(inp, NodeProp::DepType::VALUE_ALLOW_EMPTY); |
| 88 | } |
| 89 | return ret; |
| 90 | } |
| 91 | |
| 92 | void ElemwiseMultiType::init_output_static_infer_desc() { |
| 93 | Super::init_output_static_infer_desc(); |
nothing calls this directly
no test coverage detected