Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alex037yang
OpenXG-RAN
Commits
5141341c
Commit
5141341c
authored
Aug 30, 2018
by
Hongzhi Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ue bug fix polar decoder init
parent
b9c823bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
+9
-2
No files found.
openair1/PHY/NR_UE_TRANSPORT/dci_nr.c
View file @
5141341c
...
@@ -54,6 +54,7 @@
...
@@ -54,6 +54,7 @@
//#define NR_PDCCH_DCI_DEBUG // activates NR_PDCCH_DCI_DEBUG logs
//#define NR_PDCCH_DCI_DEBUG // activates NR_PDCCH_DCI_DEBUG logs
#define NR_NBR_CORESET_ACT_BWP 3 // The number of CoreSets per BWP is limited to 3 (including initial CORESET: ControlResourceId 0)
#define NR_NBR_CORESET_ACT_BWP 3 // The number of CoreSets per BWP is limited to 3 (including initial CORESET: ControlResourceId 0)
#define NR_NBR_SEARCHSPACE_ACT_BWP 10 // The number of SearSpaces per BWP is limited to 10 (including initial SEARCHSPACE: SearchSpaceId 0)
#define NR_NBR_SEARCHSPACE_ACT_BWP 10 // The number of SearSpaces per BWP is limited to 10 (including initial SEARCHSPACE: SearchSpaceId 0)
#define PDCCH_TEST_POLAR_TEMP_FIX
//#undef ALL_AGGREGATION
//#undef ALL_AGGREGATION
...
@@ -4150,8 +4151,14 @@ void nr_dci_decoding_procedure0(int s,
...
@@ -4150,8 +4151,14 @@ void nr_dci_decoding_procedure0(int s,
for
(
int
m
=
0
;
m
<
(
nCCE
[
p
]
*
6
*
9
*
2
);
m
++
)
for
(
int
m
=
0
;
m
<
(
nCCE
[
p
]
*
6
*
9
*
2
);
m
++
)
polar_input
[
m
]
=
(
pdcch_vars
[
eNB_id
]
->
e_rx
[
CCEind
*
54
+
m
]
>
0
)
?
(
1
.
0
)
:
(
-
1
.
0
);
polar_input
[
m
]
=
(
pdcch_vars
[
eNB_id
]
->
e_rx
[
CCEind
*
54
+
m
]
>
0
)
?
(
1
.
0
)
:
(
-
1
.
0
);
nr_polar_init
(
nrPolar_params
,
NR_POLAR_DCI_MESSAGE_TYPE
,
sizeof_bits
,
L
);
#ifdef PDCCH_TEST_POLAR_TEMP_FIX
t_nrPolar_paramsPtr
currentPtr
=
nr_polar_params
(
*
nrPolar_params
,
NR_POLAR_DCI_MESSAGE_TYPE
,
sizeof_bits
,
L
);
t_nrPolar_paramsPtr
currentPtr
=
NULL
;
nr_polar_init
(
&
currentPtr
,
NR_POLAR_DCI_MESSAGE_TYPE
,
dci_alloc
.
size
,
dci_alloc
.
L
);
#else
nr_polar_init
(
nrPolar_params
,
NR_POLAR_DCI_MESSAGE_TYPE
,
sizeof_bits
,
L
);
t_nrPolar_paramsPtr
currentPtr
=
nr_polar_params
(
*
nrPolar_params
,
NR_POLAR_DCI_MESSAGE_TYPE
,
sizeof_bits
,
L
);
#endif
dci_decoding
(
sizeof_bits
,
L
,
currentPtr
,
polar_input
,
&
dci_decoded_output
[
current_thread_id
][
0
]);
dci_decoding
(
sizeof_bits
,
L
,
currentPtr
,
polar_input
,
&
dci_decoded_output
[
current_thread_id
][
0
]);
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment