IOバインドタスクがあるとします。 WithDegreeOfParallelism = 10とWithExecution = ForceParallelismモードを使用していますが、依然として2つのスレッドしか使用していません。どうして?なぜPLINQは2つのスレッドしか使用しないのですか?
私は通常、PLINQはコア数に等しい並列度を選択することを理解していますが、より高い並列性に対する私の特定の要求はなぜ無視されますか?
static void Main(string[] args)
{
TestParallel(0.UpTo(8));
}
private static void TestParallel(IEnumerable<int> input)
{
var timer = new Stopwatch();
timer.Start();
var size = input.Count();
if (input.AsParallel().
WithDegreeOfParallelism(10).
WithExecutionMode(ParallelExecutionMode.ForceParallelism).
Where(IsOdd).Count() != size/2)
throw new Exception("Failed to count the odds");
timer.Stop();
Console.WriteLine("Tested " + size + " numbers in " + timer.Elapsed.TotalSeconds + " seconds");
}
private static bool IsOdd(int n)
{
Thread.Sleep(1000);
return n%2 == 1;
}
いくつのプロセッサ/コアがありますか? – LukeH
2つ。しかし、具体的には並列度を10と指定しました。 – ripper234
I/Oバウンドタスクがあり、それを複数のスレッドで並列実行するとスピードが向上し、実際にI/Oバインドされていない可能性がありますちょうどひどく書かれていました(たとえば、非同期の代わりに同期を読み込みます)。 –