mnist tensor

This commit is contained in:
Francesco Gatti
2017-08-01 18:08:56 +02:00
parent ed5e5d58b5
commit bed0b57fad
4 changed files with 71 additions and 2 deletions
+5 -2
View File
@@ -18,11 +18,14 @@ add_library(tkDNN SHARED src/Layer.cpp src/LayerWgs.cpp
src/Route.cpp src/Reorg.cpp src/Region.cpp src/Network.cpp src/utils.cpp)
target_link_libraries(tkDNN kernels ${CUDA_LIBRARIES} ${CUDA_CUBLAS_LIBRARIES} -lcudnn -lnvinfer)
add_executable(test_simple tests/test/test.cpp)
add_executable(test_simple tests/test/test_simple.cpp)
target_link_libraries(test_simple tkDNN)
add_executable(test_mnist tests/mnist/test.cpp)
add_executable(test_mnist tests/mnist/test_mnist.cpp)
target_link_libraries(test_mnist tkDNN)
add_executable(test_mnistRT tests/mnist/test_mnistRT.cpp)
target_link_libraries(test_mnistRT tkDNN)
add_executable(test_yolo tests/yolo/yolo.cpp)
target_link_libraries(test_yolo tkDNN)