forked from richgel999/CppSPMD_Fast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkernels_avx1.cpp
43 lines (32 loc) · 827 Bytes
/
kernels_avx1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#if !defined(_MSC_VER)
#if !__AVX__
#error Please check your compiler options
#endif
#if __AVX2__
#error Please check your compiler options
#endif
#endif
#include <stdlib.h>
#include <stdio.h>
#include <memory.h>
#include <string.h>
#include <cmath>
#define CPPSPMD_USE_AVX2 0
#include "cppspmd_avx2.h"
#include "cppspmd_type_aliases.h"
#include "mandelbrot_declares.h"
#include "mandelbrot_imp.h"
#include "test_kernel_declares.h"
#include "test_kernel_imp.h"
#include "rt_kernel_declares.h"
#include "rt_kernel_imp.h"
#include "simple_declares.h"
#include "simple_imp.h"
#include "volume_kernel_declares.h"
#include "volume_kernel_imp.h"
#include "noise_kernel_declares.h"
#include "noise_kernel_imp.h"
#include "options_imp.h"
#include "options_declares.h"
#include "ao_bench_declares.h"
#include "ao_bench_imp.h"