CMakeLists.txt 684 字节
Newer Older
Q
qijun 已提交
1
if(WITH_GPU)
C
caoying03 已提交
2
    nv_library(math_function SRCS math_function.cc math_function.cu im2col.cc
C
caoying03 已提交
3
      im2col.cu DEPS cblas device_context operator)
4 5
    nv_library(softmax SRCS softmax.cc softmax.cu DEPS operator)
    nv_library(cross_entropy SRCS cross_entropy.cc cross_entropy.cu
6
      DEPS operator)
Q
qijun 已提交
7
else()
C
caoying03 已提交
8
    cc_library(math_function SRCS math_function.cc im2col.cc
C
caoying03 已提交
9
      DEPS cblas device_context operator)
10 11
    cc_library(softmax SRCS softmax.cc DEPS operator)
    cc_library(cross_entropy SRCS cross_entropy.cc DEPS operator)
Q
qijun 已提交
12
endif()
Q
qijun 已提交
13

Q
qijun 已提交
14
nv_test(math_function_test SRCS math_function_test.cc DEPS math_function tensor)
H
hedaoyuan 已提交
15
cc_test(im2col_test SRCS im2col_test.cc DEPS math_function tensor)