15 lines
359 B
C++
15 lines
359 B
C++
/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#define __KERNEL_SSE__
|
|
#define __KERNEL_AVX__
|
|
#define __KERNEL_AVX2__
|
|
|
|
#define TEST_CATEGORY_NAME util_avx2
|
|
|
|
#if (defined(i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)) && \
|
|
defined(__AVX2__)
|
|
# include "util_float8_test.h"
|
|
#endif
|