junrushao1994 opened a new pull request #9056:
URL: https://github.com/apache/tvm/pull/9056
This PR introduces an API `parallel_for_dynamic` which is analogous to
OpenMP's dynamic scheduling below:
```C++
#pragma omp parallel for schedule(dynamic) num_threads(num_threads)
for (int i = 0; i < 10; i++) {
a[i] = i;
}
```
CC: @jcf94 @zxybazh @comaniac
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]