2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2022-02-11 13:53:21 +01:00
|
|
|
|
2022-11-01 15:16:55 +01:00
|
|
|
#define __KERNEL_SSE__
|
2020-02-08 16:01:28 -07:00
|
|
|
#define __KERNEL_AVX__
|
|
|
|
|
|
2020-09-15 11:16:35 +02:00
|
|
|
#define TEST_CATEGORY_NAME util_avx
|
|
|
|
|
|
2021-03-30 16:53:43 +02:00
|
|
|
#if (defined(i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)) && \
|
|
|
|
|
defined(__AVX__)
|
2022-11-01 15:16:55 +01:00
|
|
|
# include "util_float8_test.h"
|
2020-03-05 08:05:21 +11:00
|
|
|
#endif
|