Example #1
0
        public void float4x4_float4x4_burst()
        {
            FunctionPointer <float4x4_float4x4.TestFunction> testFunction = BurstCompiler.CompileFunctionPointer <float4x4_float4x4.TestFunction>(float4x4_float4x4.BurstTestFunction);
            var args = new float4x4_float4x4.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 float4x4_float4x4_mono()
        {
            float4x4_float4x4.TestFunction testFunction = float4x4_float4x4.MonoTestFunction;
            var args = new float4x4_float4x4.Arguments();

            args.Init();

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