diff --git a/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/profiling.cc b/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/profiling.cc
index 04c5422ce3aed12e605c46aad51ab2b2e75450a7..b07bc477279bf110e3cae13ace2a2689130586c2 100644
--- a/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/profiling.cc
+++ b/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/profiling.cc
@@ -30,14 +30,6 @@ void startProfiling() {
 }
 
 void stopProfiling() {
-//  std::chrono::time_point<std::chrono::high_resolution_clock> end_time = 
-  //    std::chrono::high_resolution_clock::now();
-  
-   //std::chrono::duration<double, std::milli> fp_ms = end_time - start_time;
-  
-  //profile_data = "";
-  //profile_data.append("Total Time : ");
-  //profile_data.append(std::to_string(fp_ms.count()));
   FILE *fp = fopen("profile_data.txt", "w+");
   if (fp != NULL) {
     fwrite(profile_data.c_str(), 1, profile_data.length(), fp);