gpt4 book ai didi

c# - Parallel ForEach 在不同的场合给出不同的结果

转载 作者:太空宇宙 更新时间:2023-11-03 23:11:54 25 4
gpt4 key购买 nike

我从未使用过 Parallel.ForEach 但我尝试了一下并发现了这种情况。

我运行一个并行循环(在 msdn https://msdn.microsoft.com/en-us/library/dd997393(v=vs.110).aspx 上找到的代码确实使用 subtotal *=2 对其进行了编辑以尝试理解它在做什么)首先使用可枚举范围 (0 ,1) 然后是 (0,1,2) 然后我再次运行第二个但是在线程休眠 200 毫秒之后,结果就不同了

如果 Thread.sleep(200) 没有被注释掉,这就是结果

result 1 = 2
result 2 = 6
result 3 = 4

如果 Thread.sleep(200) 被注释掉,这就是结果

result 1 = 2 
result 2 = 6
result 3 = 6

这是代码

Stopwatch timer = new Stopwatch();
int[] nums = Enumerable.Range(0, 1).ToArray();
long total = 0;
for (int i = 0; i < 2; i++)
{
timer.Restart();
total = 0;
if (i == 0) nums = Enumerable.Range(0, 1).ToArray();
if (i == 1) nums = Enumerable.Range(0, 2).ToArray();
Parallel.ForEach<int, long>(nums,() => 0,(j, loop, subtotal) =>
{
subtotal += 1;
subtotal *= 2;
return subtotal;
},(finalResult) => Interlocked.Add(ref total, finalResult));

Console.WriteLine("The total from Parallel.ForEach is {0:N0} and took {1}", total, timer.Elapsed);
timer.Stop();
//Thread.Sleep(200);
}

timer.Restart();
nums = Enumerable.Range(0, 2).ToArray();
total = 0;
Parallel.ForEach<int, long>(nums, () => 0, (j, loop, subtotal) =>
{
subtotal += 1;
subtotal *= 2;
return subtotal;
},(finalResult) => Interlocked.Add(ref total, finalResult));

Console.WriteLine("The total from Parallel.ForEach is {0:N0} and took {1}", total, timer.Elapsed);
timer.Stop();

我认为这与线程相互工作有关,但这似乎是一个错误

请注意,我确实看过 Simulation gives different result with normal for loop Vs Parallel For
为什么会这样?

最佳答案

因为这段代码定义错误:

 Parallel.ForEach<int, long>(nums,() => 0,(j, loop, subtotal) =>
{
subtotal += 1;
subtotal *= 2;
return subtotal;
},(finalResult) => Interlocked.Add(ref total, finalResult));

如果 单个 线程执行两次迭代,那么您将得到结果 6。实际上,您可以:

subTotal = 0; //From init
subTotal += 1; //=1 First iteration
subTotal *= 2; //=2 First iteration
subTotal += 1; //=3 Second iteration
subTotal *= 2; //=6 Second iteration
total += subTotal; //=6 End gathering (actually interlocked)

但是如果两个线程共享工作,你会得到

subTotal1 = 0; //From init
subTotal2 = 0; //From init
subTotal2 += 1; //=1
subTotal1 += 1; //=1
subTotal1 *= 2; //=2
subTotal2 *= 2; //=2
total += subTotal1 //=2 End gathering 1 (interlocked)
total += subTotal2 //=4 End gathering 2 (interlocked)

关于c# - Parallel ForEach 在不同的场合给出不同的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38912165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com