gpt4 book ai didi

c# - 如何在运行时决定使用 PLINQ 还是 LINQ?

转载 作者:行者123 更新时间:2023-11-30 18:08:44 25 4
gpt4 key购买 nike

或者通常在并行操作和顺序操作之间做出决定。由于开销的原因,如果不进行测试就很难知道是并行实现还是顺序实现是最好的。显然,训练“决策者”使用哪种方法需要一些时间。我会说这种方法不可能是完美的,所以它本质上是概率性的。 x,y,z 确实会影响“决策者”。我认为一个非常幼稚的实现是在开始时给两个 1/2 机会,然后根据过去的表现开始支持它们。这无视 x,y,z,无论如何,请分享您的启发式方法、您的经验(如果有)以及您的提示。

示例代码:

public interface IComputer {
decimal Compute(decimal x, decimal y, decimal z);
}

public class SequentialComputer : IComputer {
public decimal Compute( ... // sequential implementation
}

public class ParallelComputer : IComputer {
public decimal Compute( ... // parallel implementation
}

public class HybridComputer : IComputer {
private SequentialComputer sc;
private ParallelComputer pc;
private TheDecider td; // Helps to decide between the two.

public HybridComputer() {
sc = new SequentialComputer();
pc = new ParallelComputer();
td = TheDecider();
}

public decimal Compute(decimal x, decimal y, decimal z) {
decimal result;
decimal time;
if (td.PickOneOfTwo() == 0) {
// Time this and save result into time.
result = sc.Compute(...);
} else {
// Time this and save result into time.
result = pc.Compute();
}
td.Train(time);
return result;
}
}

最佳答案

我会删除计算机特化并在您的 PLINQ 代码上使用 WithDegreeOfParallelism。如果你的决策者知道没有并行是最优的,就让你的决策者返回 1。

关于c# - 如何在运行时决定使用 PLINQ 还是 LINQ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3020096/

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