CMakeLists.txt 334 字节
Newer Older
1 2 3 4
if(NOT LITE_WITH_CUDA)
    return()
endif()

S
update  
superjomn 已提交
5 6
message(STATUS "compile with lite CUDA kernels")

7
nv_library(mul_compute_cuda SRCS mul_compute.cc DEPS ${tensor_lite})
Z
Zhen Wang 已提交
8
lite_cc_library(io_copy_compute_cuda SRCS io_copy_compute.cc DEPS ${tensor_lite})
S
superjomn 已提交
9

10
nv_library(kernels_cuda DEPS mul_compute_cuda io_copy_compute_cuda cuda_blas_lite)
11
 
T
tensor-tang 已提交
12