[pipelineX](dependency) split different dependencies (#27366)

This commit is contained in:
Gabriel
2023-11-22 12:50:39 +08:00
committed by GitHub
parent 604842526b
commit 5442e8d1fc
76 changed files with 1307 additions and 1275 deletions

View File

@ -72,7 +72,7 @@ void SharedHashTableController::signal(int my_node_id, Status status) {
_shared_contexts.erase(it);
}
for (auto& dep : _dependencies[my_node_id]) {
dep->set_ready_for_write();
dep->set_ready();
}
_cv.notify_all();
}
@ -85,7 +85,7 @@ void SharedHashTableController::signal(int my_node_id) {
_shared_contexts.erase(it);
}
for (auto& dep : _dependencies[my_node_id]) {
dep->set_ready_for_write();
dep->set_ready();
}
_cv.notify_all();
}