Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/embree/common/simd/avx.h
9912 views
1
// Copyright 2009-2021 Intel Corporation
2
// SPDX-License-Identifier: Apache-2.0
3
4
#pragma once
5
6
#include "sse.h"
7
8
#if defined(__AVX512VL__)
9
#include "vboolf8_avx512.h"
10
#include "vboold4_avx512.h"
11
#else
12
#include "vboolf8_avx.h"
13
#include "vboold4_avx.h"
14
#endif
15
16
#if defined(__AVX2__)
17
#include "vint8_avx2.h"
18
#include "vuint8_avx2.h"
19
#if defined(__X86_64__)
20
#include "vllong4_avx2.h"
21
#endif
22
#else
23
#include "vint8_avx.h"
24
#include "vuint8_avx.h"
25
#endif
26
#include "vfloat8_avx.h"
27
#if defined(__X86_64__)
28
#include "vdouble4_avx.h"
29
#endif
30
31
#if defined(__AVX512F__)
32
#include "avx512.h"
33
#endif
34
35