OClCollMeshEngn: call clFlush+clFinish after setup()

This ensures that all operations enqueued during setup() get fully
executed before any requests come in.
This commit is contained in:
2025-11-14 17:42:46 -04:00
parent 0720ed9c76
commit 3995f57489
@@ -242,6 +242,8 @@ bool OpenClCollatingAndMeshingEngine::setup()
goto cleanup;
}
clFlush(commandQueue);
clFinish(commandQueue);
shouldAcceptRequests = true;
return true;