| 744 | } |
| 745 | |
| 746 | void VarNodeMemManager::reset_opr_seq( |
| 747 | CompSeqExtraInfo& extra_info, const OprNodeArray* seq) { |
| 748 | auto run_id_ptr = static_cast<ComputingGraphImpl::ComputingSequence*>( |
| 749 | m_owner_graph->current_comp_seq()) |
| 750 | ->get_run_id_ptr(); |
| 751 | m_dynamic_alloc_opr_info.clear(); |
| 752 | reset_opr_seq_no_clear_dyn_alloc_info(extra_info, seq, run_id_ptr); |
| 753 | } |
| 754 | |
| 755 | void VarNodeMemManager::reset_opr_seq_no_clear_dyn_alloc_info( |
| 756 | CompSeqExtraInfo& extra_info, const OprNodeArray* seq, |
no test coverage detected