Pretend we have a class:
class Foo
{
private:
Concurrency::task_group _tasks;
};
How do I assign a scheduler to this task_group? I do not want to use the default scheduler as I also use parallel_for elsewhere in the code.
The task_group will have it's level of maxconcurrency set through the scheduler to use either all cores, or a subset of them depending on the hour. The application may run for hours, so the maxconcurrency will be required to change.
I cannot find a nice way of doing this in PPL. In .NET this is very easy - all you have to do is set MaxDegreeOfParallelism.
Any ideas?
There are several solutions:
If you use the MSVS C++ 2012 than:
If you APP works on Win7x64 or Windows Server 2008 R2 than try UMS:
And last. Create new curren sheduler with new oversubscribe policy (enlarge MaxConcurrency) befor create new heavy time task.