[Documentation]: `thrust::hip::par_nosync`
mccoys opened this issue · 4 comments
Description of errors
I cannot find any description of the thrust::hip::par_nosync
policy.
Attach any links, screenshots, or additional evidence you think will be helpful.
No response
Hello, you can find a description of the par_nosync
execution policy the changelog here:
By default, thrust API calls operate synchronously (they block). When this policy is used, thrust may launch some algorithms asynchronously if it is possible to do so (eg. if it does not affect the correctness of the output). This can result in improved performance. However, you'll need to explicitly synchronize after your API calls.
Thank you for pointing this out. I still believe that a real documentation entry should be added. The changelog does not appear in search results
Agreed. It looks like this execution policy got missed in the documentation - probably because it was added after the others. I'll put up a pull request with a documentation update shortly.