Skip to content
Snippets Groups Projects
Commit 02808b31 authored by kotsifa2's avatar kotsifa2
Browse files

Bug fix - Changed called function name in online profiling for input sampling

parent fbb184dc
No related branches found
No related tags found
No related merge requests found
......@@ -184,7 +184,7 @@ void* handleTensorConvApproximationTuples(
row = 3; col = 1; offset = 2;
break;
default:
DEBUG("Unsupported Option: Select default, 1-2-1.\n");
DEBUG("Unsupported Option: Select default, 1-2-0.\n");
row = 1; col = 2; offset = 0;
break;
}
......@@ -242,8 +242,8 @@ void* handleTensorConvApproximationTuples(
RC->pause_profiler();
std::pair<double, double> pinfo = RC->get_time_energy();
RC->reset_profiler();
RC->addToCurrentIterationComputeTime("tensorConvSampSim", pinfo.first);
RC->addToCurrentIterationComputeEnergy("tensorConvSampSim", pinfo.second);
RC->addToCurrentIterationComputeTime("tensorConvInputHalf", pinfo.first);
RC->addToCurrentIterationComputeEnergy("tensorConvInputHalf", pinfo.second);
return t_out;
}
default :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment