later
later copied to clipboard
[Question] is later compatible with OpenMP?
I was wondering if I run later
c++ BackgroundTask::execute
with omp code inside, will there be any side-effects?
Something like
void execute() {
...
#pragma omp parallel num_threads(ncores)
{
...
}
}