ensure io/comm streams are active before eval (#1412)

This commit is contained in:
Awni Hannun
2024-09-14 06:17:36 -07:00
committed by GitHub
parent bd8396fad8
commit b3f52c9fbe
3 changed files with 14 additions and 4 deletions

View File

@@ -255,6 +255,9 @@ Group init(bool strict /* = false */) {
}
}
// Ensure the communication stream is alive before
// the graph is evaluated
detail::communication_stream();
return Group(global_group);
}