| 725 | } |
| 726 | |
| 727 | Elemwise::NodeProp* Elemwise::do_make_node_prop() const { |
| 728 | auto ret = Super::do_make_node_prop(); |
| 729 | for (auto& inp : input()) { |
| 730 | ret->add_dep_type_existing_var(inp, NodeProp::DepType::VALUE_ALLOW_EMPTY); |
| 731 | } |
| 732 | return ret; |
| 733 | } |
| 734 | |
| 735 | /* =========================== TypeCvt =========================== */ |
| 736 |
nothing calls this directly
no test coverage detected