SimdOps.h 926 B

12345678910111213141516171819
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. // SIMD operations
  7. #include "Language/SimdFloat32x4Operation.h"
  8. #include "Language/SimdFloat64x2Operation.h"
  9. #include "Language/SimdInt32x4Operation.h"
  10. #include "Language/SimdInt16x8Operation.h"
  11. #include "Language/SimdInt8x16Operation.h"
  12. #include "Language/SimdUint32x4Operation.h"
  13. #include "Language/SimdUint16x8Operation.h"
  14. #include "Language/SimdUint8x16Operation.h"
  15. #include "Language/SimdBool32x4Operation.h"
  16. #include "Language/SimdBool16x8Operation.h"
  17. #include "Language/SimdBool8x16Operation.h"
  18. #include "Language/SimdInt64x2Operation.h"