From cb2006822c7cdc1789599cfd57158315d79e8c15 Mon Sep 17 00:00:00 2001 From: Hashim Sharif <hsharif3@miranda.cs.illinois.edu> Date: Wed, 28 Apr 2021 18:15:32 -0500 Subject: [PATCH] Removing ugly prints in CPU config handling --- .../hpvm-tensor-rt/tensor_runtime/src/hpvm-rt-controller.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/hpvm-rt-controller.cpp b/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/hpvm-rt-controller.cpp index 0332313c57..9f17a3dc51 100644 --- a/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/hpvm-rt-controller.cpp +++ b/hpvm/projects/hpvm-tensor-rt/tensor_runtime/src/hpvm-rt-controller.cpp @@ -688,7 +688,6 @@ void RuntimeController::readConfigurationFile(const char *str) { firstTensorID += NodeConf->getApproxChoices().size(); } else if (tokens[1] == "cpu") { - INFO("---------Found cpu configuration\n"); // There must be at least one operation, with an approximation option CUSTOM_ASSERT((tokens.size() >= 5) && @@ -700,8 +699,7 @@ void RuntimeController::readConfigurationFile(const char *str) { InitialConfigurations.back().idConfigMap.insert( std::make_pair(firstTensorID, NodeConf)); - INFO("*** firstTensorID = %d \n\n", firstTensorID); - INFO("FIXED CPU ID ISSUE\n"); + unsigned idx = 2; while (idx < tokens.size()) { if (tokens[idx] == "add") { -- GitLab