Home
last modified time | relevance | path

Searched refs:GetIntrpService (Results 1 – 9 of 9) sorted by relevance

/third_party/mindspore/tests/ut/cpp/dataset/
Dinterrupt_test.cc49 vg_.GetIntrpService()->InterruptAll(); in TEST_F()
65 vg_.GetIntrpService()->InterruptAll(); in TEST_F()
Dtask_manager_test.cc65 rc = cv.Register(vg.GetIntrpService()); in TEST_F()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
Dtask.cc57 rc_ = vg->GetIntrpService()->Register(ss.str(), this); in operator ()()
143 auto interrupt_svc = MyTaskGroup()->GetIntrpService(); in Join()
Dsemaphore.cc33 Status Semaphore::Register(TaskGroup *vg) { return wait_cond_.Register(vg->GetIntrpService()); } in Register()
Dqueue.h153 Status rc1 = empty_cv_.Register(vg->GetIntrpService()); in Register()
154 Status rc2 = full_cv_.Register(vg->GetIntrpService()); in Register()
Dwait_post.cc39 Status WaitPost::Register(TaskGroup *vg) { return wait_cond_.Register(vg->GetIntrpService()); } in Register()
Dtask_manager.cc82 auto svc = vg->GetIntrpService(); in interrupt_all()
365 std::shared_ptr<IntrpService> TaskGroup::GetIntrpService() { return intrp_svc_; } in GetIntrpService() function in mindspore::dataset::TaskGroup
Dtask_manager.h154 std::shared_ptr<IntrpService> GetIntrpService();
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/
Dconnector.h183 rc = cv_.Register(vg->GetIntrpService()); in Register()