parent
0815935916
commit
6b12c697ff
@ -1,5 +1,13 @@
|
||||
if (WITH_GPU)
|
||||
nv_library(math_function SRCS math_function.cc math_function.cu DEPS cblas device_context)
|
||||
if (WITH_MKLML)
|
||||
nv_library(math_function SRCS math_function.cc math_function.cu DEPS mklml device_context)
|
||||
else()
|
||||
nv_library(math_function SRCS math_function.cc math_function.cu DEPS cblas device_context)
|
||||
endif()
|
||||
else()
|
||||
cc_library(math_function SRCS math_function.cc DEPS cblas device_context)
|
||||
if (WITH_MKLML)
|
||||
cc_library(math_function SRCS math_function.cc DEPS mklml device_context)
|
||||
else()
|
||||
cc_library(math_function SRCS math_function.cc DEPS cblas device_context)
|
||||
endif()
|
||||
endif()
|
||||
|
Loading…
Reference in new issue