在 C# .NET 5 中同时并行执行任务
Execute tasks simultaneously in parallel in C# .NET 5
我正在尝试同时执行一组任务,精确到纳秒。这可能吗?
似乎我添加的任务越多,不准确的范围就越大 - 这让我相信我做错了什么。
有这方面的最佳实践吗?
这是我的代码和我得到的结果:
class Program
{
static async Task Main(string[] args)
{
int[] iterations = Enumerable.Range(1, 100).ToArray();
Func<Task<DateTime>>[] delegates = new Func<Task<DateTime>>[iterations.Length];
foreach (int i in iterations)
{
async Task<DateTime> GetTime()
{
await Task.Delay(1000);
return DateTime.Now;
}
delegates[Array.IndexOf(iterations, i)] = GetTime;
}
Task<DateTime>[] tasks = delegates
.AsParallel()
.Select(async task => await task())
.ToArray();
await Task.WhenAll(tasks);
DateTime[] dateTimes = tasks
.Select(l => l.Result)
.ToArray();
foreach (DateTime dateTime in dateTimes)
Console.WriteLine(dateTime.ToString("yyyy-MM-dd HH:mm:ss.ffffff"));
Console.WriteLine("Range: " + (dateTimes.Max() - dateTimes.Min()).TotalMilliseconds);
Console.ReadKey();
}
}
我 100 次迭代的平均结果:
Range: 7.6709
I am trying to execute an array of tasks at exactly the same time, to the nanosecond. Is this possible?
没有。这在任何使用抢占式调度的操作系统上都是不可能的,例如 Windows 或 Linux.
我正在尝试同时执行一组任务,精确到纳秒。这可能吗?
似乎我添加的任务越多,不准确的范围就越大 - 这让我相信我做错了什么。
有这方面的最佳实践吗?
这是我的代码和我得到的结果:
class Program
{
static async Task Main(string[] args)
{
int[] iterations = Enumerable.Range(1, 100).ToArray();
Func<Task<DateTime>>[] delegates = new Func<Task<DateTime>>[iterations.Length];
foreach (int i in iterations)
{
async Task<DateTime> GetTime()
{
await Task.Delay(1000);
return DateTime.Now;
}
delegates[Array.IndexOf(iterations, i)] = GetTime;
}
Task<DateTime>[] tasks = delegates
.AsParallel()
.Select(async task => await task())
.ToArray();
await Task.WhenAll(tasks);
DateTime[] dateTimes = tasks
.Select(l => l.Result)
.ToArray();
foreach (DateTime dateTime in dateTimes)
Console.WriteLine(dateTime.ToString("yyyy-MM-dd HH:mm:ss.ffffff"));
Console.WriteLine("Range: " + (dateTimes.Max() - dateTimes.Min()).TotalMilliseconds);
Console.ReadKey();
}
}
我 100 次迭代的平均结果:
Range: 7.6709
I am trying to execute an array of tasks at exactly the same time, to the nanosecond. Is this possible?
没有。这在任何使用抢占式调度的操作系统上都是不可能的,例如 Windows 或 Linux.