Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
b467d224
Commit
b467d224
authored
Mar 12, 2021
by
sfn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix pdsch UE variables memory allocation
parent
0e5ba8cf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
119 additions
and
114 deletions
+119
-114
openair1/PHY/INIT/nr_init_ue.c
openair1/PHY/INIT/nr_init_ue.c
+19
-16
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
+98
-96
openair1/PHY/NR_UE_TRANSPORT/nr_transport_proto_ue.h
openair1/PHY/NR_UE_TRANSPORT/nr_transport_proto_ue.h
+2
-2
No files found.
openair1/PHY/INIT/nr_init_ue.c
View file @
b467d224
...
...
@@ -71,31 +71,34 @@ void phy_init_nr_ue__PDSCH(NR_UE_PDSCH *const pdsch,
pdsch
->
llr128
=
(
int16_t
**
)
malloc16_clear
(
sizeof
(
int16_t
*
)
);
// FIXME! no further allocation for (int16_t*)pdsch->llr128 !!! expect SIGSEGV
// FK, 11-3-2015: this is only as a temporary pointer, no memory is stored there
pdsch
->
rxdataF_ext
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rxdataF_uespec_pilots
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rxdataF_comp0
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rho
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_estimates
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_bf_ch_estimates
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_bf_ch_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rxdataF_ext
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rxdataF_uespec_pilots
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rxdataF_comp0
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
rho
=
(
int32_t
**
*
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_estimates
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_bf_ch_estimates
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_bf_ch_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
//pdsch->dl_ch_rho_ext = (int32_t**)malloc16_clear( 8*sizeof(int32_t*) );
//pdsch->dl_ch_rho2_ext = (int32_t**)malloc16_clear( 8*sizeof(int32_t*) );
pdsch
->
dl_ch_mag0
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_magb0
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_magr0
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
ptrs_phase_per_slot
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
ptrs_re_per_slot
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_ptrs_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
4
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_mag0
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_magb0
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_magr0
=
(
int32_t
**
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
ptrs_phase_per_slot
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
ptrs_re_per_slot
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
pdsch
->
dl_ch_ptrs_estimates_ext
=
(
int32_t
**
)
malloc16_clear
(
fp
->
nb_antennas_rx
*
sizeof
(
int32_t
*
)
);
// the allocated memory size is fixed:
AssertFatal
(
fp
->
nb_antennas_rx
<=
4
,
"nb_antennas_rx > 4"
);
//Extend the max number of UE Rx antennas to 4
for
(
int
i
=
0
;
i
<
fp
->
nb_antennas_rx
;
i
++
)
{
pdsch
->
rho
[
i
]
=
(
int32_t
*
)
malloc16_clear
(
sizeof
(
int32_t
)
*
(
fp
->
N_RB_DL
*
12
*
7
*
2
)
);
pdsch
->
rho
[
i
]
=
(
int32_t
*
*
)
malloc16_clear
(
NR_MAX_NB_LAYERS
*
NR_MAX_NB_LAYERS
*
sizeof
(
int32_t
)
);
for
(
int
j
=
0
;
j
<
4
;
j
++
)
{
//4: DL antenna ports
for
(
int
j
=
0
;
j
<
NR_MAX_NB_LAYERS
;
j
++
)
{
const
int
idx
=
(
j
*
fp
->
nb_antennas_rx
)
+
i
;
const
size_t
num
=
7
*
2
*
fp
->
N_RB_DL
*
12
;
for
(
int
k
=
0
;
k
<
NR_MAX_NB_LAYERS
;
k
++
)
{
pdsch
->
rho
[
i
][
j
*
NR_MAX_NB_LAYERS
+
k
]
=
(
int32_t
*
)
malloc16_clear
(
sizeof
(
int32_t
)
*
num
);
}
pdsch
->
rxdataF_ext
[
idx
]
=
(
int32_t
*
)
malloc16_clear
(
sizeof
(
int32_t
)
*
num
);
pdsch
->
rxdataF_uespec_pilots
[
idx
]
=
(
int32_t
*
)
malloc16_clear
(
sizeof
(
int32_t
)
*
fp
->
N_RB_DL
*
12
);
pdsch
->
rxdataF_comp0
[
idx
]
=
(
int32_t
*
)
malloc16_clear
(
sizeof
(
int32_t
)
*
num
);
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_dlsch_demodulation.c
View file @
b467d224
...
...
@@ -776,7 +776,7 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
int
**
dl_ch_magb
,
int
**
dl_ch_magr
,
int
**
rxdataF_comp
,
int
**
rho
,
int
**
*
rho
,
NR_DL_FRAME_PARMS
*
frame_parms
,
uint8_t
nb_aatx
,
unsigned
char
symbol
,
...
...
@@ -791,7 +791,7 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
#if defined(__i386) || defined(__x86_64)
unsigned
short
rb
;
unsigned
char
aatx
,
aarx
;
unsigned
char
aatx
,
aarx
,
atx
;
__m128i
*
dl_ch128
,
*
dl_ch128_2
,
*
dl_ch_mag128
,
*
dl_ch_mag128b
,
*
dl_ch_mag128r
,
*
rxdataF128
,
*
rxdataF_comp128
,
*
rho128
;
__m128i
mmtmpD0
,
mmtmpD1
,
mmtmpD2
,
mmtmpD3
,
QAM_amp128
,
QAM_amp128b
,
QAM_amp128r
;
QAM_amp128b
=
_mm_setzero_si128
();
...
...
@@ -964,21 +964,24 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
}
}
if
(
rho
)
{
//rho[aatx*n_rx+0] = Cov(H_0,0,H*_0,aatx), aatx=0,...n_tx-1
//rho[aatx*n_rx+1] = Cov(H_1,1,H*_1,aatx), aatx=0,...n_tx-1
//rho[aatx*n_rx+aarx] = Cov(H_aarx,arrx,H*_aarx,aatx), aatx=0,...n_tx-1
//we compute the Tx correlation matrix for each Rx antenna
//As an example the 2x2 MIMO case requires
//rho[aarx][nb_aatx*nb_aatx] = [cov(H_aarx_0,H_aarx_0) cov(H_aarx_0,H_aarx_1)
// cov(H_aarx_1,H_aarx_0) cov(H_aarx_1,H_aarx_1)], aarx=0,...,nb_antennas_rx-1
int
avg_rho_re
[
nb_aatx
][
frame_parms
->
nb_antennas_r
x
];
int
avg_rho_im
[
nb_aatx
][
frame_parms
->
nb_antennas_r
x
];
int
avg_rho_re
[
frame_parms
->
nb_antennas_rx
][
nb_aat
x
];
int
avg_rho_im
[
frame_parms
->
nb_antennas_rx
][
nb_aat
x
];
for
(
aarx
=
0
;
aarx
<
frame_parms
->
nb_antennas_rx
;
aarx
++
)
{
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aarx
][
symbol
*
nb_rb
*
12
];
//H_{aarx,0}
for
(
aatx
=
1
;
aatx
<
nb_aatx
;
aatx
++
)
{
avg_rho_re
[
aatx
][
aarx
]
=
0
;
avg_rho_im
[
aatx
][
aarx
]
=
0
;
rho128
=
(
__m128i
*
)
&
rho
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
nb_rb
*
12
];
dl_ch128_2
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
nb_rb
*
12
];
for
(
aatx
=
0
;
aatx
<
nb_aatx
;
aatx
++
)
{
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aatx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
nb_rb
*
12
];
for
(
atx
=
0
;
atx
<
nb_aatx
;
atx
++
)
{
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
atx
]
=
0
;
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
atx
]
=
0
;
rho128
=
(
__m128i
*
)
&
rho
[
aarx
][
aatx
*
nb_aatx
+
atx
][
symbol
*
nb_rb
*
12
];
dl_ch128_2
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
atx
*
frame_parms
->
nb_antennas_rx
+
aarx
][
symbol
*
nb_rb
*
12
];
for
(
rb
=
0
;
rb
<
nb_rb
;
rb
++
)
{
// multiply by conjugated channel
...
...
@@ -1004,15 +1007,15 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
//print_shorts("ch:",dl_ch128);
//print_shorts("pack:",rho128);
avg_rho_re
[
aatx
][
aar
x
]
+=
(((
int16_t
*
)
&
rho128
[
0
])[
0
]
+
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
at
x
]
+=
(((
int16_t
*
)
&
rho128
[
0
])[
0
]
+
((
int16_t
*
)
&
rho128
[
0
])[
2
]
+
((
int16_t
*
)
&
rho128
[
0
])[
4
]
+
((
int16_t
*
)
&
rho128
[
0
])[
6
])
/
16
;
((
int16_t
*
)
&
rho128
[
0
])[
6
])
/
16
;
//
avg_rho_im
[
aatx
][
aar
x
]
+=
(((
int16_t
*
)
&
rho128
[
0
])[
1
]
+
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
at
x
]
+=
(((
int16_t
*
)
&
rho128
[
0
])[
1
]
+
((
int16_t
*
)
&
rho128
[
0
])[
3
]
+
((
int16_t
*
)
&
rho128
[
0
])[
5
]
+
((
int16_t
*
)
&
rho128
[
0
])[
7
])
/
16
;
((
int16_t
*
)
&
rho128
[
0
])[
7
])
/
16
;
//
// multiply by conjugated channel
mmtmpD0
=
_mm_madd_epi16
(
dl_ch128
[
1
],
dl_ch128_2
[
1
]);
...
...
@@ -1032,13 +1035,12 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
//print_shorts("pack:",rho128+1);
// multiply by conjugated channel
avg_rho_re
[
aatx
][
aarx
]
+=
(((
int16_t
*
)
&
rho128
[
1
])[
0
]
+
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
atx
]
+=
(((
int16_t
*
)
&
rho128
[
1
])[
0
]
+
((
int16_t
*
)
&
rho128
[
1
])[
2
]
+
((
int16_t
*
)
&
rho128
[
1
])[
4
]
+
((
int16_t
*
)
&
rho128
[
1
])[
6
])
/
16
;
avg_rho_im
[
aatx
][
aar
x
]
+=
(((
int16_t
*
)
&
rho128
[
1
])[
1
]
+
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
at
x
]
+=
(((
int16_t
*
)
&
rho128
[
1
])[
1
]
+
((
int16_t
*
)
&
rho128
[
1
])[
3
]
+
((
int16_t
*
)
&
rho128
[
1
])[
5
]
+
((
int16_t
*
)
&
rho128
[
1
])[
7
])
/
16
;
...
...
@@ -1059,13 +1061,12 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
//print_shorts("rx:",dl_ch128_2+2);
//print_shorts("ch:",dl_ch128+2);
//print_shorts("pack:",rho128+2);
avg_rho_re
[
aatx
][
aarx
]
+=
(((
int16_t
*
)
&
rho128
[
2
])[
0
]
+
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
atx
]
+=
(((
int16_t
*
)
&
rho128
[
2
])[
0
]
+
((
int16_t
*
)
&
rho128
[
2
])[
2
]
+
((
int16_t
*
)
&
rho128
[
2
])[
4
]
+
((
int16_t
*
)
&
rho128
[
2
])[
6
])
/
16
;
avg_rho_im
[
aatx
][
aar
x
]
+=
(((
int16_t
*
)
&
rho128
[
2
])[
1
]
+
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
at
x
]
+=
(((
int16_t
*
)
&
rho128
[
2
])[
1
]
+
((
int16_t
*
)
&
rho128
[
2
])[
3
]
+
((
int16_t
*
)
&
rho128
[
2
])[
5
]
+
((
int16_t
*
)
&
rho128
[
2
])[
7
])
/
16
;
...
...
@@ -1074,12 +1075,13 @@ void nr_dlsch_channel_compensation(int **rxdataF_ext,
dl_ch128_2
+=
3
;
rho128
+=
3
;
}
/*if (first_symbol_flag==1) {
* //measurements->rx_correlation[0][0][aarx] = signal_energy(&rho[aarx][symbol*nb_rb*12],rb*12);
* avg_rho_re[aatx][aarx] = 16*avg_rho_re[aatx][aarx]/(nb_rb*12);
* avg_rho_im[aatx][aarx] = 16*avg_rho_im[aatx][aarx]/(nb_rb*12);
* printf("rho_rx%d tx%d= Re: %d Im: %d\n",aarx, aatx, avg_rho_re[aatx][aarx], avg_rho_im[aatx][aarx]);
* }*/
if
(
first_symbol_flag
==
1
)
{
//measurements->rx_correlation[0][0][aarx] = signal_energy(&rho[aarx][aatx*nb_aatx+atx][symbol*nb_rb*12],rb*12);
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
atx
]
=
16
*
avg_rho_re
[
aarx
][
aatx
*
nb_aatx
+
atx
]
/
(
nb_rb
*
12
);
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
atx
]
=
16
*
avg_rho_im
[
aarx
][
aatx
*
nb_aatx
+
atx
]
/
(
nb_rb
*
12
);
printf
(
"rho[rx]%d tx%d tx%d = Re: %d Im: %d
\n
"
,
aarx
,
aatx
,
atx
,
avg_rho_re
[
aatx
*
nb_aatx
+
atx
],
avg_rho_im
[
aatx
*
nb_aatx
+
atx
]);
}
}
}
}
}
...
...
@@ -1292,7 +1294,7 @@ void nr_dlsch_channel_compensation_core(int **rxdataF_ext,
int
**
dl_ch_mag
,
int
**
dl_ch_magb
,
int
**
rxdataF_comp
,
int
**
rho
,
int
**
*
rho
,
unsigned
char
n_tx
,
unsigned
char
n_rx
,
unsigned
char
mod_order
,
...
...
@@ -1429,7 +1431,7 @@ void nr_dlsch_channel_compensation_core(int **rxdataF_ext,
for
(
aarx
=
0
;
aarx
<
n_rx
;
aarx
++
)
{
rho128
=
(
__m128i
*
)
&
rho
[
aarx
][
start_point
];
rho128
=
(
__m128i
*
)
&
rho
[
aarx
][
0
][
start_point
];
dl_ch128
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
aarx
][
start_point
];
dl_ch128_2
=
(
__m128i
*
)
&
dl_ch_estimates_ext
[
2
+
aarx
][
start_point
];
...
...
openair1/PHY/NR_UE_TRANSPORT/nr_transport_proto_ue.h
View file @
b467d224
...
...
@@ -803,7 +803,7 @@ void nr_dlsch_channel_compensation(int32_t **rxdataF_ext,
int32_t
**
dl_ch_magb
,
int32_t
**
dl_ch_magr
,
int32_t
**
rxdataF_comp
,
int32_t
**
rho
,
int32_t
**
*
rho
,
NR_DL_FRAME_PARMS
*
frame_parms
,
uint8_t
nb_aatx
,
uint8_t
symbol
,
...
...
@@ -819,7 +819,7 @@ void nr_dlsch_channel_compensation_core(int **rxdataF_ext,
int
**
dl_ch_mag
,
int
**
dl_ch_magb
,
int
**
rxdataF_comp
,
int
**
rho
,
int
**
*
rho
,
unsigned
char
n_tx
,
unsigned
char
n_rx
,
unsigned
char
mod_order
,
...
...
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