gpt4 book ai didi

c# - 如何处理任务并行库中的目录文件?

转载 作者:行者123 更新时间:2023-11-30 20:39:41 24 4
gpt4 key购买 nike

我有一个场景,我必须根据处理器内核并行处理多个文件(例如 30 个)。我必须根据处理器内核的数量将这些文件分配给单独的任务。我不知道如何为每个要处理的任务设置开始和结束限制。例如,每个任务都知道它必须处理多少文件。

    private void ProcessFiles(object e)
{
try
{
var diectoryPath = _Configurations.Descendants().SingleOrDefault(Pr => Pr.Name == "DirectoryPath").Value;

var FilePaths = Directory.EnumerateFiles(diectoryPath);
int numCores = System.Environment.ProcessorCount;
int NoOfTasks = FilePaths.Count() > numCores ? (FilePaths.Count()/ numCores) : FilePaths.Count();


for (int i = 0; i < NoOfTasks; i++)
{
Task.Factory.StartNew(
() =>
{
int startIndex = 0, endIndex = 0;
for (int Count = startIndex; Count < endIndex; Count++)
{
this.ProcessFile(FilePaths);
}
});

}
}
catch (Exception ex)
{
throw;
}
}

最佳答案

对于像您这样的问题,C# 中提供了并发数据结构。你想使用 BlockingCollection并将所有文件名存储在其中。

您通过使用机器上可用的核心数来计算任务数的想法不是很好。为什么?因为 ProcessFile() 可能不会为每个文件花费相同的时间。因此,最好将任务数设置为您拥有的内核数。然后,让每个任务从BlockingCollection中一个一个地读取文件名,然后处理文件,直到BlockingCollection为空。

try
{
var directoryPath = _Configurations.Descendants().SingleOrDefault(Pr => Pr.Name == "DirectoryPath").Value;

var filePaths = CreateBlockingCollection(directoryPath);
//Start the same #tasks as the #cores (Assuming that #files > #cores)
int taskCount = System.Environment.ProcessorCount;

for (int i = 0; i < taskCount; i++)
{
Task.Factory.StartNew(
() =>
{
string fileName;
while (!filePaths.IsCompleted)
{
if (!filePaths.TryTake(out fileName)) continue;
this.ProcessFile(fileName);
}
});
}
}

CreateBlockingCollection() 将如下所示:

private BlockingCollection<string> CreateBlockingCollection(string path)
{
var allFiles = Directory.EnumerateFiles(path);
var filePaths = new BlockingCollection<string>(allFiles.Count);
foreach(var fileName in allFiles)
{
filePaths.Add(fileName);
}
filePaths.CompleteAdding();
return filePaths;
}

您现在必须修改 ProcessFile() 以接收文件名,而不是获取所有文件路径并处理其 block 。

这种方法的优点是现在您的 CPU 不会超额或不足,而且负载也会均衡。


我自己没有运行代码,所以我的代码中可能存在一些语法错误。如果您遇到任何错误,请随时纠正错误。

关于c# - 如何处理任务并行库中的目录文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34099876/

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