From c655208d8122072e5c3685a6534cd70e1cec89d3 Mon Sep 17 00:00:00 2001
From: Hashim Sharif <hsharif3@tyler.cs.illinois.edu>
Date: Sat, 13 Jun 2020 01:55:34 -0500
Subject: [PATCH] Fixing CMake rule to unit_tests <-> test_ops

---
 llvm/projects/hpvm-tensor-rt/CMakeLists.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llvm/projects/hpvm-tensor-rt/CMakeLists.txt b/llvm/projects/hpvm-tensor-rt/CMakeLists.txt
index 2758545786..faa12577c0 100644
--- a/llvm/projects/hpvm-tensor-rt/CMakeLists.txt
+++ b/llvm/projects/hpvm-tensor-rt/CMakeLists.txt
@@ -124,8 +124,8 @@ target_link_libraries(tensor_runtime_online  ${LINK_LIBS})
 ### TODO: Remove unsued CMake rules after careful consideration
 
 # Adding rule for the debugging source
-add_executable(test_ops  dnn_sources/src/test_ops.cc)
-target_link_libraries(test_ops  tensor_runtime ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
+add_executable(unit_tests   dnn_sources/src/unit_tests.cc)
+target_link_libraries(unit_tests  tensor_runtime ${GPU_PROFILER_LIB} ${SOC_SIMULATOR_LIB})
 
 
 
-- 
GitLab