diff --git a/lib/src/phy/phch/sch_nr.c b/lib/src/phy/phch/sch_nr.c index e9967d795..9cecc665b 100644 --- a/lib/src/phy/phch/sch_nr.c +++ b/lib/src/phy/phch/sch_nr.c @@ -196,11 +196,7 @@ int srslte_sch_nr_init_tx(srslte_sch_nr_t* q) return ret; } -#ifdef LV_HAVE_AVX2 - srslte_ldpc_encoder_type_t encoder_type = SRSLTE_LDPC_ENCODER_AVX2; -#else // LV_HAVE_AVX2 srslte_ldpc_encoder_type_t encoder_type = SRSLTE_LDPC_ENCODER_C; -#endif // LV_HAVE_AVX2 // Iterate over all possible lifting sizes for (uint16_t ls = 0; ls <= MAX_LIFTSIZE; ls++) { diff --git a/lib/src/phy/phch/test/dlsch_nr_test.c b/lib/src/phy/phch/test/dlsch_nr_test.c index 33a394925..d4c849607 100644 --- a/lib/src/phy/phch/test/dlsch_nr_test.c +++ b/lib/src/phy/phch/test/dlsch_nr_test.c @@ -33,8 +33,8 @@ static srslte_carrier_nr_t carrier = { 0 // start }; -static uint32_t n_prb = 1; // Set to 0 for steering -static uint32_t mcs = 16; // Set to 30 for steering +static uint32_t n_prb = 0; // Set to 0 for steering +static uint32_t mcs = 30; // Set to 30 for steering static srslte_pdsch_cfg_nr_t pdsch_cfg = {}; static srslte_pdsch_grant_nr_t pdsch_grant = {}; @@ -234,4 +234,4 @@ clean_exit: srslte_softbuffer_rx_free(&softbuffer_rx); return SRSLTE_SUCCESS; -} \ No newline at end of file +}