summaryrefslogtreecommitdiff
path: root/tests/src/JIT/SIMD/VectorHWAccel2.cs
blob: b2aaacda4ee1b2e3d9adf4b2e8665d95b56451d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//

using System;
using System.Numerics;

internal partial class VectorTest
{
    private const int Pass = 100;
    private const int Fail = -1;

    private class VectorHWAccelTest<T> where T : struct, IComparable<T>, IEquatable<T>
    {
        public static int VectorHWAccel2(T a, T b, T c)
        {
            Vector<T> A = new Vector<T>(a);
            Vector<T> B = new Vector<T>(b);
            Vector<T> C = A + B;
            for (int i = 0; i < Vector<T>.Count; i++)
            {
                if (!(CheckValue<T>(C[i], c)))
                {
                    return Fail;
                }
            }
            return Pass;
        }
    }

    private static int Main()
    {
        if (Vector.IsHardwareAccelerated)
        {
            // The test harness will check to ensure that this method was compiled, which it will
            // not be if IsHardwareAccelerated returns false.
            return VectorHWAccelTest<float>.VectorHWAccel2(1, 2, (float)(1 + 2));
        }
        return Pass;
    }
}