-
Notifications
You must be signed in to change notification settings - Fork 5
/
Android.bp
58 lines (47 loc) · 1.37 KB
/
Android.bp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
cc_defaults {
name: "compute-runtime-defaults",
vendor: true,
cflags: [
],
cppflags: [
"-Wno-error",
"-fexceptions",
"-msse4.2",
"-mavx2",
"-D__AVX2__",
"-mretpoline",
"-Wshorten-64-to-32",
"-Wno-extern-c-compat",
"-Wno-instantiation-after-specialization",
"-DSANITIZER_BUILD",
"-Wno-deprecated-register",
"-Wno-error=non-virtual-dtor",
"-Wno-deprecated-copy",
],
include_dirs: [
"hardware/intel/external/opencl/intel-graphics-compiler/include/igc",
"hardware/intel/external/opencl/intel-graphics-compiler/include/igc/cif",
"hardware/intel/external/opencl/intel-graphics-compiler/include/igc/ocl_igc_shared/executable_format",
"hardware/intel/external/opencl/intel-graphics-compiler/include/igc/ocl_igc_shared/device_enqueue",
"hardware/intel/external/opencl/intel-graphics-compiler/include/visa",
"hardware/intel/external/opencl/compute-runtime/device/include/",
],
shared_libs: [
"libigdgmm_android",
"libcutils",
"libbinder",
],
header_libs: [
"libigdgmm_headers",
"libva_headers",
],
static_libs: [
],
}
build = [
"libigdrcl_lib_release.bp",
"libneo_shared.bp",
"libigdrcl.bp",
"ocloc_lib.bp",
"ocloc.bp",
]