forked from projectceladon/nn_gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Android.bp
executable file
·65 lines (65 loc) · 1.97 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
59
60
61
62
63
64
65
cc_binary {
name: "[email protected]",
defaults: ["hidl_defaults"],
init_rc: ["[email protected]"],
srcs: [
"service.cpp",
"device.cpp",
"prepare_model.cpp",
"executor_manager.cpp",
"base_executor.cpp",
"gpu_executor.cpp",
"gles/gles_cs_executor.cpp",
"gles/gles_memory_manager.cpp",
"gles/gles_pool_info.cpp",
"gles/gles_memory_info.cpp",
"gles/gles_operand.cpp",
"gles/gles_cs_program_manager.cpp",
"gles/gles_cs_executor_add.cpp",
"gles/gles_cs_program_add.cpp",
"gles/gles_cs_executor_conv.cpp",
"gles/gles_cs_program_conv.cpp",
"gles/gles_cs_executor_logistic.cpp",
"gles/gles_cs_program_logistic.cpp",
"gles/gles_cs_executor_mul.cpp",
"gles/gles_cs_program_mul.cpp",
"gles/gles_cs_executor_depth_conv.cpp",
"gles/gles_cs_program_depth_conv.cpp",
"gles/gles_cs_executor_avg_pool.cpp",
"gles/gles_cs_program_avg_pool.cpp",
"gles/gles_cs_executor_softmax.cpp",
"gles/gles_cs_program_softmax.cpp",
"gles/gles_cs_executor_reshape.cpp",
"gles/gles_cs_program_reshape.cpp",
"gles/gles_cs_executor_max_pool.cpp",
"gles/gles_cs_program_max_pool.cpp",
],
relative_install_path: "hw",
proprietary: true,
shared_libs: [
"libbase",
"libdl",
"libcutils",
"libhardware",
"libhidlbase",
"libhidlmemory",
"libhidltransport",
"libtextclassifier_hash",
"liblog",
"libutils",
"libEGL",
"libGLESv3",
],
cflags: [
"-g",
"-Wall",
"-Werror",
"-Wextra",
"-DLOG_TAG=\"NNGPUHAL\"",
"-O0",
"-DLOG_NDEBUG=0",
],
}