parent
4130e5faf8
commit
7ef568e893
@ -1,18 +1,18 @@
|
||||
if(WITH_GPU)
|
||||
nv_library(math_function SRCS math_function.cc math_function.cu im2col.cc im2col.cu DEPS cblas device_context operator)
|
||||
nv_test(math_function_gpu_test SRCS math_function_test.cu DEPS math_function tensor)
|
||||
nv_test(math_function_gpu_test SRCS math_function_test.cu DEPS math_function tensor selected_rows)
|
||||
nv_library(softmax SRCS softmax.cc softmax.cu DEPS operator)
|
||||
nv_library(cross_entropy SRCS cross_entropy.cc cross_entropy.cu DEPS operator)
|
||||
nv_library(pooling SRCS pooling.cc pooling.cu DEPS device_context)
|
||||
nv_library(vol2col SRCS vol2col.cc vol2col.cu DEPS device_context)
|
||||
else()
|
||||
cc_library(math_function SRCS math_function.cc im2col.cc DEPS cblas device_context operator)
|
||||
cc_test(math_function_test SRCS math_function_test.cc DEPS math_function tensor)
|
||||
cc_library(softmax SRCS softmax.cc DEPS operator)
|
||||
cc_library(cross_entropy SRCS cross_entropy.cc DEPS operator)
|
||||
cc_library(pooling SRCS pooling.cc DEPS device_context)
|
||||
cc_library(vol2col SRCS vol2col.cc DEPS device_context)
|
||||
endif()
|
||||
|
||||
cc_test(math_function_test SRCS math_function_test.cc DEPS math_function tensor selected_rows)
|
||||
cc_test(im2col_test SRCS im2col_test.cc DEPS math_function tensor)
|
||||
cc_test(vol2col_test SRCS vol2col_test.cc DEPS vol2col tensor)
|
||||
|
Loading…
Reference in new issue