“d8f95214df1f7c2994a196f9f7777a0b2d8df8eb”上不存在“projects/MrDujing/imports.yml”
CMakeLists.txt 873 字节
Newer Older
Z
Zhen Wang 已提交
1
if (NOT LITE_WITH_OPENCL)
Z
Zhen Wang 已提交
2 3 4 5 6 7 8 9
    return()
endif()

find_library(opencl-lib
        NAMES OpenCL)
message(STATUS "The OpenCL library path : ${opencl-lib}")

cc_library(cl_tool SRCS cl_tool.cc)
Z
Zhen Wang 已提交
10
target_compile_options(cl_tool BEFORE PUBLIC -Wno-ignored-qualifiers)
Z
Zhen Wang 已提交
11
cc_library(cl_half SRCS cl_half.cc)
Z
Zhen Wang 已提交
12
target_compile_options(cl_half BEFORE PUBLIC -fno-strict-aliasing)
Z
Zhen Wang 已提交
13 14
cc_library(cl_engine SRCS cl_engine.cc DEPS cl_tool)
cc_library(cl_context SRCS cl_context.cc DEPS cl_engine)
Z
Zhen Wang 已提交
15
cc_library(cl_helper SRCS cl_helper.cc DEPS cl_context proto_desc)
Z
Zhen Wang 已提交
16
cc_library(cl_image_converter SRCS cl_image_converter.cc DEPS cl_half lite_tensor)
Z
Zhen Wang 已提交
17
cc_library(cl_image SRCS cl_image.cc DEPS cl_half lite_tensor cl_image_converter cl_engine)
Z
Zhen Wang 已提交
18 19
cc_test(test_cl_runtime SRCS cl_test.cc DEPS cl_engine cl_context)
target_link_libraries(test_cl_runtime ${opencl-lib})
Z
Zhen Wang 已提交
20
add_dependencies(cl_tool opencl_clhpp)