* Replace license text in headers with SPDX identifiers. * Remove specific license info from outdated readme.txt, instead leave details to the source files. * Add list of SPDX license identifiers used, and corresponding license texts. * Update copyright dates while we're at it. Ref D14069, T95597
13 lines
314 B
C++
13 lines
314 B
C++
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright 2011-2022 Blender Foundation */
|
|
|
|
#define __KERNEL_AVX__
|
|
#define __KERNEL_CPU__
|
|
|
|
#define TEST_CATEGORY_NAME util_avx
|
|
|
|
#if (defined(i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64)) && \
|
|
defined(__AVX__)
|
|
# include "util_avxf_test.h"
|
|
#endif
|