Skip to content

Commit

Permalink
Merge pull request #4 from vloncar/line_buffer_conv
Browse files Browse the repository at this point in the history
Fix Conv1D encoded impl after function renaming
  • Loading branch information
Keb-L authored Jun 4, 2021
2 parents faedfec + 525c578 commit ae50bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hls4ml/templates/vivado/nnet_utils/nnet_conv1d_stream.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void conv_1d_encoded_cl(
#pragma HLS PIPELINE II=CONFIG_T::reuse_factor
}
compute_scaled_indices_1d<data_T, CONFIG_T>(i_iw, pixel_idx);
compute_encoded_output<data_T, res_T, CONFIG_T>(data.read(), data_window, res, res_pack, outputs_ready, weights, biases, pixel_idx);
compute_output_encoded<data_T, res_T, CONFIG_T>(data.read(), data_window, res, res_pack, outputs_ready, weights, biases, pixel_idx);
}
}

Expand Down

0 comments on commit ae50bfe

Please sign in to comment.