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
lizhongxiao
OpenXG-RAN
Commits
e744f30c
Commit
e744f30c
authored
Jun 15, 2023
by
Tsung-Yu Chan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix / 2-layer MIMO performance optimize
parent
6ac3a017
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
155 deletions
+61
-155
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
+1
-0
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
+49
-155
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
+11
-0
No files found.
openair1/PHY/NR_TRANSPORT/nr_transport_proto.h
View file @
e744f30c
...
...
@@ -214,6 +214,7 @@ void nr_ulsch_channel_compensation(int **rxdataF_ext,
*/
void
nr_idft
(
int32_t
*
z
,
uint32_t
Msc_PUSCH
);
void
nr_ulsch_shift_llr
(
int16_t
**
llr_layers
,
uint32_t
nb_re
,
uint32_t
rxdataF_ext_offset
,
int
shift
);
void
nr_ulsch_qpsk_qpsk
(
c16_t
*
stream0_in
,
c16_t
*
stream1_in
,
c16_t
*
stream0_out
,
c16_t
*
rho01
,
uint32_t
length
);
...
...
openair1/PHY/NR_TRANSPORT/nr_ulsch_demodulation.c
View file @
e744f30c
This diff is collapsed.
Click to expand it.
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
View file @
e744f30c
...
...
@@ -3740,3 +3740,14 @@ void nr_ulsch_qam64_qam64(c16_t *stream0_in,
simde_mm_empty
();
simde_m_empty
();
}
void
nr_ulsch_shift_llr
(
int16_t
**
llr_layers
,
uint32_t
nb_re
,
uint32_t
rxdataF_ext_offset
,
int
shift
)
{
simde__m128i
*
llr_layers0
=
(
simde__m128i
*
)
&
llr_layers
[
0
][
rxdataF_ext_offset
];
simde__m128i
*
llr_layers1
=
(
simde__m128i
*
)
&
llr_layers
[
1
][
rxdataF_ext_offset
];
for
(
int
i
=
0
;
i
<
nb_re
>>
2
;
i
++
)
{
llr_layers0
[
i
]
=
simde_mm_srai_epi16
(
llr_layers0
[
i
],
shift
);
llr_layers1
[
i
]
=
simde_mm_srai_epi16
(
llr_layers1
[
i
],
shift
);
}
}
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