mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-11-05 17:34:21 +00:00
8 lines
127 B
CMake
8 lines
127 B
CMake
set(LAYER_SOURCES layers/dense.cu)
|
|
|
|
add_library(CUDANet
|
|
utils/cuda_helper.cu
|
|
utils/functions.cu
|
|
${LAYER_SOURCES}
|
|
)
|