From fb30ee92f960f5f1ee6d1976bfe18d7264eb1e95 Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Sun, 26 Apr 2015 19:52:42 +0100 Subject: [PATCH] Updating comments --- .../Cuda/CudaLinearAlgebraProvider.Complex.cs | 4 ++-- .../Cuda/CudaLinearAlgebraProvider.Complex32.cs | 4 ++-- .../Cuda/CudaLinearAlgebraProvider.Double.cs | 4 ++-- .../Cuda/CudaLinearAlgebraProvider.Single.cs | 4 ++-- .../LinearAlgebra/Cuda/CudaLinearAlgebraProvider.cs | 9 ++------- 5 files changed, 10 insertions(+), 15 deletions(-) diff --git a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex.cs b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex.cs index 5936f3e0..31abfbc5 100644 --- a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex.cs +++ b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics @@ -39,7 +39,7 @@ using MathNet.Numerics.Properties; namespace MathNet.Numerics.Providers.LinearAlgebra.Cuda { /// - /// Intel's Math Kernel Library (MKL) linear algebra provider. + /// NVidia's CUDA Toolkit linear algebra provider. /// public partial class CudaLinearAlgebraProvider { diff --git a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex32.cs b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex32.cs index 97a2307b..81679c15 100644 --- a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex32.cs +++ b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Complex32.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics @@ -39,7 +39,7 @@ using MathNet.Numerics.Properties; namespace MathNet.Numerics.Providers.LinearAlgebra.Cuda { /// - /// Intel's Math Kernel Library (MKL) linear algebra provider. + /// NVidia's CUDA Toolkit linear algebra provider. /// public partial class CudaLinearAlgebraProvider { diff --git a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Double.cs b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Double.cs index 6f8e3ca4..6e73ed46 100644 --- a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Double.cs +++ b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Double.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics @@ -39,7 +39,7 @@ using MathNet.Numerics.Properties; namespace MathNet.Numerics.Providers.LinearAlgebra.Cuda { /// - /// Intel's Math Kernel Library (MKL) linear algebra provider. + /// NVidia's CUDA Toolkit linear algebra provider. /// public partial class CudaLinearAlgebraProvider { diff --git a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Single.cs b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Single.cs index 02aef2cf..0ac4e34f 100644 --- a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Single.cs +++ b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.Single.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics @@ -39,7 +39,7 @@ using MathNet.Numerics.Properties; namespace MathNet.Numerics.Providers.LinearAlgebra.Cuda { /// - /// Intel's Math Kernel Library (MKL) linear algebra provider. + /// NVidia's CUDA Toolkit linear algebra provider. /// public partial class CudaLinearAlgebraProvider { diff --git a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.cs b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.cs index 543866e4..afef619f 100644 --- a/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.cs +++ b/src/Numerics/Providers/LinearAlgebra/Cuda/CudaLinearAlgebraProvider.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics @@ -35,12 +35,7 @@ using System; namespace MathNet.Numerics.Providers.LinearAlgebra.Cuda { /// - /// Consistency vs. performance trade-off between runs on different machines. - /// - - - /// - /// Intel's Math Kernel Library (MKL) linear algebra provider. + /// NVidia's CUDA Toolkit linear algebra provider. /// public partial class CudaLinearAlgebraProvider : ManagedLinearAlgebraProvider, IDisposable {