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
ZhouShuya
OpenXG-RAN
Commits
eec9f293
Commit
eec9f293
authored
Jul 31, 2018
by
Elena Lukashova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Making channel and data arrays dimensions in compensation function
more flexible to support 4x4 system.
parent
71978e71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
+8
-9
No files found.
openair1/PHY/LTE_UE_TRANSPORT/dlsch_demodulation.c
View file @
eec9f293
...
...
@@ -1315,13 +1315,12 @@ void dlsch_channel_compensation(int **rxdataF_ext,
for
(
aarx
=
0
;
aarx
<
frame_parms
->
nb_antennas_rx
;
aarx
++
)
{
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
2
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
//print_shorts("dl_ch128[0]=",&dl_ch128[0]);*/
dl_ch_mag128
=
(
__m128i
*
)
&
dl_ch_mag
[
aatx
*
2
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
dl_ch_mag128b
=
(
__m128i
*
)
&
dl_ch_magb
[
aatx
*
2
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
dl_ch_mag128
=
(
__m128i
*
)
&
dl_ch_mag
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
dl_ch_mag128b
=
(
__m128i
*
)
&
dl_ch_magb
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
rxdataF128
=
(
__m128i
*
)
&
rxdataF_ext
[
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
rxdataF_comp128
=
(
__m128i
*
)
&
rxdataF_comp
[
aatx
*
2
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
rxdataF_comp128
=
(
__m128i
*
)
&
rxdataF_comp
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
frame_parms
->
N_RB_DL
*
12
];
for
(
rb
=
0
;
rb
<
nb_rb
;
rb
++
)
{
if
(
mod_order
>
2
)
{
...
...
@@ -1772,11 +1771,11 @@ void dlsch_channel_compensation_core(int **rxdataF_ext,
for
(
aarx
=
0
;
aarx
<
n_rx
;
aarx
++
)
{
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
2
+
aarx
][
start_point
];
dl_ch_mag128
=
(
__m128i
*
)
&
dl_ch_mag
[
aatx
*
2
+
aarx
][
start_point
];
dl_ch_mag128b
=
(
__m128i
*
)
&
dl_ch_magb
[
aatx
*
2
+
aarx
][
start_point
];
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
n_rx
+
aarx
][
start_point
];
dl_ch_mag128
=
(
__m128i
*
)
&
dl_ch_mag
[
aatx
*
n_rx
+
aarx
][
start_point
];
dl_ch_mag128b
=
(
__m128i
*
)
&
dl_ch_magb
[
aatx
*
n_rx
+
aarx
][
start_point
];
rxdataF128
=
(
__m128i
*
)
&
rxdataF_ext
[
aarx
][
start_point
];
rxdataF_comp128
=
(
__m128i
*
)
&
rxdataF_comp
[
aatx
*
2
+
aarx
][
start_point
];
rxdataF_comp128
=
(
__m128i
*
)
&
rxdataF_comp
[
aatx
*
n_rx
+
aarx
][
start_point
];
length_mod8
=
length
&
7
;
if
(
length_mod8
==
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