-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.inner_loop_reduce
More file actions
14 lines (14 loc) · 935 Bytes
/
Makefile.inner_loop_reduce
File metadata and controls
14 lines (14 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: inner_loop_reduce.none.x-mic inner_loop_reduce.none.x-host inner_loop_reduce.simd.x-mic inner_loop_reduce.simd.x-host inner_loop_reduce.vector_variant.x-mic inner_loop_reduce.vector_variant.x-host
CC=icc -O3 -std=c99 -w2 -qopt-report=5 -wd10397 -wd10382
inner_loop_reduce.none.x-mic: inner_loop_reduce.c
$(CC) -o$@ -mmic inner_loop_reduce.c
inner_loop_reduce.none.x-host: inner_loop_reduce.c
$(CC) -o$@ -xHost inner_loop_reduce.c
inner_loop_reduce.simd.x-mic: inner_loop_reduce.c
$(CC) -o$@ -mmic inner_loop_reduce.c -DSIMD -DSIMD_CORRECT
inner_loop_reduce.simd.x-host: inner_loop_reduce.c
$(CC) -o$@ -xHost inner_loop_reduce.c -DSIMD -DSIMD_CORRECT
inner_loop_reduce.vector_variant.x-mic: inner_loop_reduce.c
$(CC) -o$@ -mmic inner_loop_reduce.c -DSIMD -DSIMD_CORRECT -DVECTOR_VARIANT
inner_loop_reduce.vector_variant.x-host: inner_loop_reduce.c
$(CC) -o$@ -xHost inner_loop_reduce.c -DSIMD -DSIMD_CORRECT -DVECTOR_VARIANT