public void CompareTestSameArrayLongOld()
        {
            int maxSize = 10000000;

            double[] source    = new double[maxSize];
            double[] target    = new double[maxSize];
            double   tolerance = 0.01;
            double   epsilon   = 0.001;


            for (int i = 0; i < maxSize; i++)
            {
                source[i] = maxSize + i;
                target[i] = maxSize + i;
            }
            var cudaMath   = new CudaMathematics();
            var retCompare = cudaMath.CompareAbsoluteOld(source, target, tolerance, epsilon);

            Assert.AreEqual(0, retCompare.Item1);
        }