Example #1
0
        public void float3x3_hashwide_burst()
        {
            FunctionPointer <float3x3_hashwide.TestFunction> testFunction = BurstCompiler.CompileFunctionPointer <float3x3_hashwide.TestFunction>(float3x3_hashwide.BurstTestFunction);
            var args = new float3x3_hashwide.Arguments();

            args.Init();

            Measure.Method(() =>
            {
                testFunction.Invoke(ref args);
            })
            .Definition(sampleUnit: SampleUnit.Microsecond)
            .WarmupCount(1)
            .MeasurementCount(10)
            .Run();
            args.Dispose();
        }
Example #2
0
        public void float3x3_hashwide_mono()
        {
            float3x3_hashwide.TestFunction testFunction = float3x3_hashwide.MonoTestFunction;
            var args = new float3x3_hashwide.Arguments();

            args.Init();

            Measure.Method(() =>
            {
                testFunction.Invoke(ref args);
            })
            .Definition(sampleUnit: SampleUnit.Microsecond)
            .WarmupCount(1)
            .MeasurementCount(10)
            .Run();
            args.Dispose();
        }