From 896e0a8a763ad1b41051548b754820c3bca08678 Mon Sep 17 00:00:00 2001 From: Hashim Sharif <hsharif3@tyler.cs.illinois.edu> Date: Sat, 13 Jun 2020 02:09:27 -0500 Subject: [PATCH] fixing MobileNet fp16 file names --- llvm/projects/hpvm-tensor-rt/CMakeLists.txt | 4 ++-- .../half/{mobilenet_depthwise_half.cc => mobilenet_half.cc} | 0 ...et_shallow_depthwise_half.cc => mobilenet_shallow_half.cc} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/{mobilenet_depthwise_half.cc => mobilenet_half.cc} (100%) rename llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/{mobilenet_shallow_depthwise_half.cc => mobilenet_shallow_half.cc} (100%) diff --git a/llvm/projects/hpvm-tensor-rt/CMakeLists.txt b/llvm/projects/hpvm-tensor-rt/CMakeLists.txt index 6c2c977923..ba8d053f5d 100644 --- a/llvm/projects/hpvm-tensor-rt/CMakeLists.txt +++ b/llvm/projects/hpvm-tensor-rt/CMakeLists.txt @@ -253,10 +253,10 @@ target_link_libraries(vgg16_cifar10_half tensor_runtime_online ${GPU_PROFILER_ add_executable(vgg16_cifar100_half dnn_sources/src/half/vgg16_cifar100_half.cc) target_link_libraries(vgg16_cifar100_half tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB}) -add_executable(mobilenet_half dnn_sources/src/half/mobilenet_depthwise_half.cc) +add_executable(mobilenet_half dnn_sources/src/half/mobilenet_half.cc) target_link_libraries(mobilenet_half tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB}) -add_executable(mobilenet_shallow_half dnn_sources/src/half/mobilenet_shallow_depthwise_half.cc) +add_executable(mobilenet_shallow_half dnn_sources/src/half/mobilenet_shallow_half.cc) target_link_libraries(mobilenet_shallow_half tensor_runtime_online ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB}) diff --git a/llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_depthwise_half.cc b/llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_half.cc similarity index 100% rename from llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_depthwise_half.cc rename to llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_half.cc diff --git a/llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_shallow_depthwise_half.cc b/llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_shallow_half.cc similarity index 100% rename from llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_shallow_depthwise_half.cc rename to llvm/projects/hpvm-tensor-rt/dnn_sources/src/half/mobilenet_shallow_half.cc -- GitLab