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

Changed called function for input sampling

parent ba3a2e65
No related branches found
No related tags found
No related merge requests found
......@@ -231,10 +231,14 @@ void* handleTensorConvApproximationTuples(
}
void* t_out;
RC->resume_profiler();
t_out = tensorConvSampSim(input, filter,
conv_pad_h, conv_pad_w,
conv_stride_h, conv_stride_w,
1, 1, skip_rate, offset);
// t_out = tensorConvSampSim(input, filter,
// conv_pad_h, conv_pad_w,
// conv_stride_h, conv_stride_w,
// 1, 1, skip_rate, offset);
t_out = tensorConvInputHalf(input, filter,
conv_pad_h, conv_pad_w,
conv_stride_h, conv_stride_w,
1, 1, skip_rate, offset);
RC->pause_profiler();
std::pair<double, double> pinfo = RC->get_time_energy();
RC->reset_profiler();
......
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