| 123456789101112131415161718 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #pragma once
- // SIMD operations
- #include "Language/SimdFloat32x4Operation.h"
- #include "Language/SimdFloat64x2Operation.h"
- #include "Language/SimdInt32x4Operation.h"
- #include "Language/SimdInt16x8Operation.h"
- #include "Language/SimdInt8x16Operation.h"
- #include "Language/SimdUint32x4Operation.h"
- #include "Language/SimdUint16x8Operation.h"
- #include "Language/SimdUint8x16Operation.h"
- #include "Language/SimdBool32x4Operation.h"
- #include "Language/SimdBool16x8Operation.h"
- #include "Language/SimdBool8x16Operation.h"
|