diff options
author | Johannes Demel <ufcsy@student.kit.edu> | 2018-02-25 16:25:54 +0100 |
---|---|---|
committer | Andrej Rode <mail@andrejro.de> | 2018-06-23 21:26:53 +0200 |
commit | fcd002b6ac82e1e0c1224e24506410ff0833e1aa (patch) | |
tree | b29b0c2667bca5b73028029fdfcc9faea03a28cc /gr-fec/lib/polar_decoder_common.cc | |
parent | 5cd85dca88f42356082f1bb63dce2c8d0bf2b807 (diff) |
fec: update VOLK API call
VOLK kernel polarbutterfly has an updated API. This patch updates the corresponding call into VOLK.
VOLK submodule update: v1.4
Diffstat (limited to 'gr-fec/lib/polar_decoder_common.cc')
-rw-r--r-- | gr-fec/lib/polar_decoder_common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/lib/polar_decoder_common.cc b/gr-fec/lib/polar_decoder_common.cc index 1d4a21a191..9d632110f4 100644 --- a/gr-fec/lib/polar_decoder_common.cc +++ b/gr-fec/lib/polar_decoder_common.cc @@ -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); } |