Skip to content
Snippets Groups Projects
Commit dd8dae92 authored by Hashim Sharif's avatar Hashim Sharif
Browse files

Adding REsNet50 piped version

parent 028b98a9
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,13 @@ target_link_libraries(mobilenet_cifar10_shallow tensor_runtime ${GPU_PROFILER_L
add_executable(mobilenet_shallow_depthwise dnn_sources/src/mobilenet_shallow_depthwise.cc)
target_link_libraries(mobilenet_shallow_depthwise tensor_runtime ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
add_executable(resnet_imagenet dnn_sources/src/resnet_imagenet.cc)
target_link_libraries(resnet_imagenet tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
add_executable(mobilenet_imagenet dnn_sources/src/mobilenet_imagenet.cc)
target_link_libraries(mobilenet_imagenet tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
#********* Promise API sources
......@@ -220,6 +227,10 @@ target_link_libraries(mobilenet_shallow_promise tensor_runtime_online ${GPU_PR
add_executable(vgg16_imagenet_promise dnn_sources/src/promise/vgg16_imagenet_promise.cc)
target_link_libraries(vgg16_imagenet_promise tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
add_executable(resnet50_imagenet_promise dnn_sources/src/promise/resnet50_imagenet_promise.cc)
target_link_libraries(resnet50_imagenet_promise tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
# testing binaries
......@@ -291,6 +302,9 @@ target_link_libraries(mobilenet_shallow_piped tensor_runtime_online ${GPU_PROF
add_executable(vgg16_imagenet_piped dnn_sources/src/promise/vgg16_imagenet_piped.cc)
target_link_libraries(vgg16_imagenet_piped tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
add_executable(resnet50_imagenet_piped dnn_sources/src/promise/resnet50_imagenet_piped.cc)
target_link_libraries(resnet50_imagenet_piped tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment