Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fec: update VOLK API call
VOLK kernel polarbutterfly has an updated API. This patch updates the corresponding call into VOLK.
  • Loading branch information
Johannes Demel authored and marcusmueller committed Mar 1, 2018
1 parent 11469b1 commit 00c6f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gr-fec/lib/polar_decoder_common.cc
Expand Up @@ -125,7 +125,7 @@ namespace gr {
polar_decoder_common::butterfly_volk(float* llrs, unsigned char* u, const int stage,
const int u_num, const int row)
{
volk_32f_8u_polarbutterfly_32f(llrs, u, block_size(), block_power(), stage, u_num, row);
volk_32f_8u_polarbutterfly_32f(llrs, u, block_power(), stage, u_num, row);
}


Expand Down

0 comments on commit 00c6f25

Please sign in to comment.