Firstborn/Library/PackageCache/com.unity.burst@1.8.4/Tests/Runtime/UnityBenchShared/SumNumberJob.cs
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

57 lines
1.4 KiB
C#

using System;
using System.Runtime.CompilerServices;
using Unity.Collections;
using Unity.Jobs;
[assembly: InternalsVisibleTo("Burst.Benchmarks")]
namespace UnityBenchShared
{
internal struct SumNumbersTest : IJob, IDisposable
{
public const int Count = 10000000;
public NativeArray<float> output;
[ReadOnly]
public NativeArray<float> a;
[ReadOnly]
public NativeArray<float> b;
public void Execute()
{
for (int i = 0; i < Count; ++i)
{
output[i] = a[i] + b[i];
}
}
public struct Provider : IArgumentProvider
{
public object Value
{
get
{
var job = new SumNumbersTest();
job.output = new NativeArray<float>(Count, Allocator.Persistent);
job.a = new NativeArray<float>(Count, Allocator.Persistent);
job.b = new NativeArray<float>(Count, Allocator.Persistent);
for (int i = 0; i < Count; i++)
{
job.a[i] = i;
}
return job;
}
}
}
public void Dispose()
{
output.Dispose();
a.Dispose();
b.Dispose();
}
}
}