在C#.NET中,将双精度数组初始化为NaN的最快方法是什么?
以下是我目前正在初始化包含许多元素的数组。
int length = array.Length;
for(int i = 0; i < length; i++)
{
array[i] = double.NaN;
}
有更快的方法吗?
答案 0 :(得分:2)
使用0xff的字节值填充数组会产生NaN。尝试使用此代码查看计算机上最快的代码。 Memset()并不总是一声巨响:
using System;
using System.Runtime.InteropServices;
using System.Diagnostics;
class Program {
static void Main(string[] args) {
var arr = new double[10 * 1024 * 1024];
for (int loop = 1; loop < 20; ++loop) {
var sw1 = Stopwatch.StartNew();
for (int ix = 0; ix < arr.Length; ++ix)
arr[ix] = double.NaN;
sw1.Stop();
var sw2 = Stopwatch.StartNew();
memset(arr, 0xff, 8 * arr.Length);
sw2.Stop();
Console.WriteLine("Loop: {0}, memset: {1}", sw1.ElapsedMilliseconds, sw2.ElapsedMilliseconds);
}
Console.ReadLine();
}
[DllImport("msvcrt.dll")]
private static extern void memset(double[] array, int value, int cnt);
}
答案 1 :(得分:1)
你可以多线程,但它仍然是一个O(N)问题。