| 848 | } |
| 849 | |
| 850 | void ComputingGraphImpl::record_async_error(std::unique_ptr<MegBrainError> async_exc) { |
| 851 | mgb_assert(m_current_comp_seq); |
| 852 | static_cast<ComputingSequence*>(m_current_comp_seq) |
| 853 | ->set_async_error(std::move(async_exc)); |
| 854 | } |
| 855 | |
| 856 | const CompSeqExtraInfo& ComputingGraphImpl::current_comp_seq_extra_info() { |
| 857 | if (auto ret = eager_eval_manager().comp_seq_extra_info()) { |
no test coverage detected