Disable SIMD AVX decoder

This commit is contained in:
Xavier Arteaga 2020-11-18 11:19:29 +01:00 committed by Andre Puschmann
parent bd68e5f3b3
commit c2bc042713
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ int main(int argc, char** argv)
}
srslte_sch_nr_args_t args = {};
args.disable_simd = false;
args.disable_simd = true;
if (srslte_sch_nr_init_tx(&sch_nr_tx, &args) < SRSLTE_SUCCESS) {
ERROR("Error initiating SCH NR for Tx\n");
goto clean_exit;