If I have a parallel section code, is it possible to assign a specific thread to each section, i.e. something of the sort
#pragma omp sections num_threads(2)
{
#pragma omp section //<---assigned to master thread
{
//do something
}
#pragma omp section //<---assigned to the other thread
{
//do something
}
}