From 07c5b51bf00d49ec83a829f4f49cb865be144f65 Mon Sep 17 00:00:00 2001 From: akashk4 <akashk4@illinois.edu> Date: Sat, 30 Jan 2021 20:58:46 +0000 Subject: [PATCH] Remove some stray comments from profiling file --- .../hpvm-tensor-rt/tensor_runtime/src/profiling.cc | 8 -------- 1 file changed, 8 deletions(-) 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 04c5422ce3..b07bc47727 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); -- GitLab