mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
33 lines
652 B
C#
33 lines
652 B
C#
using BenchmarkDotNet.Attributes;
|
|
using Robust.Shared.Analyzers;
|
|
|
|
namespace Robust.Benchmarks.NumericsHelpers;
|
|
|
|
[Virtual]
|
|
public class AddBenchmark
|
|
{
|
|
[Params(32, 128)]
|
|
public int N { get; set; }
|
|
|
|
[Params(1,2)]
|
|
public int T { get; set; }
|
|
|
|
private float[] _inputA = default!;
|
|
private float[] _inputB = default!;
|
|
private float[] _output = default!;
|
|
|
|
[GlobalSetup]
|
|
public void Setup()
|
|
{
|
|
_inputA = new float[N];
|
|
_inputB = new float[N];
|
|
_output = new float[N];
|
|
}
|
|
|
|
[Benchmark]
|
|
public void Bench()
|
|
{
|
|
Shared.Maths.NumericsHelpers.Add(_inputA, _inputB, _output);
|
|
}
|
|
}
|