forked from tsai/mathnet-numerics
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
580 B
24 lines
580 B
using System;
|
|
using BenchmarkDotNet.Running;
|
|
using MathNet.Numerics;
|
|
|
|
namespace Benchmark
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(Control.Describe());
|
|
|
|
var switcher = new BenchmarkSwitcher(
|
|
new[]
|
|
{
|
|
typeof(Transforms.FFT),
|
|
typeof(LinearAlgebra.DenseMatrixProduct),
|
|
typeof(LinearAlgebra.DenseVectorAdd),
|
|
});
|
|
|
|
switcher.Run(args);
|
|
}
|
|
}
|
|
}
|
|
|