diff --git a/hpvm/projects/hpvm-tensor-rt/CMakeLists_cpu.txt b/hpvm/projects/hpvm-tensor-rt/CMakeLists_cpu.txt
deleted file mode 100644
index cff0129c2aa02b9776ed7bba8e92029d2c2560e8..0000000000000000000000000000000000000000
--- a/hpvm/projects/hpvm-tensor-rt/CMakeLists_cpu.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-cmake_minimum_required (VERSION 2.6)
-project (approxhpvm-tensorRt-cpu)
-
-
-# Addresses a bug where code is not compiled as C++11 in non-CUDA code and older g++ versions
-set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 " )
- 
-
-# Adding new rule for building a cuDNN runtime library
-add_library(tensor_cpu_runtime tensor_runtime/src/tensor_cpu_runtime.cc)
-target_link_libraries(tensor_cpu_runtime)
-
-
-#**** CPU sources
-add_executable(fc2_cpu  dnn_sources/src/fc2_cpu.cc)
-target_link_libraries(fc2_cpu  tensor_cpu_runtime)
-
-
-