keryell added a comment.

Interesting.



================
Comment at: clang/docs/StdParSupport.rst:349
+
+        thread t0{[&]() {
+          hipSetDevice(accelerator_0);
----------------



================
Comment at: clang/docs/StdParSupport.rst:354
+        }};
+        thread t1{[&]() {
+          hitSetDevice(accelerator_1);
----------------



================
Comment at: clang/docs/StdParSupport.rst:360-362
+        t0.join();
+        t1.join();
+
----------------



================
Comment at: clang/docs/StdParSupport.rst:366-367
+
+   Note that this is a temporary, unsafe workaround for a deficiency in the C++
+   Standard.
+
----------------
Another way could be to hide somehow a way to select the device in the policy 
like in https://github.com/KhronosGroup/SyclParallelSTL, which might be 
something included in your point "4." of "Open Questions / Future Developments".
Perhaps better than opening the TLS Pandora box?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D155769/new/

https://reviews.llvm.org/D155769

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to