Commit a50ad456 authored by mir's avatar mir

BugFix: Post decode is not run in parallel

parent 42e08ff4
...@@ -116,15 +116,9 @@ int nr_postDecode_sim(PHY_VARS_gNB *gNB, notifiedFIFO_elt_t *req, int *nb_ok) ...@@ -116,15 +116,9 @@ int nr_postDecode_sim(PHY_VARS_gNB *gNB, notifiedFIFO_elt_t *req, int *nb_ok)
// if all segments are done // if all segments are done
if (rdata->nbSegments == ulsch_harq->processedSegments){ if (rdata->nbSegments == ulsch_harq->processedSegments){
#ifdef TASK_MANAGER_DECODING
completed_task_ans(rdata->ans);
#endif
return *nb_ok == rdata->nbSegments; return *nb_ok == rdata->nbSegments;
} }
#ifdef TASK_MANAGER_DECODING
completed_task_ans(rdata->ans);
#endif
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment