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
spbro
OpenXG-RAN
Commits
917ff8e9
Commit
917ff8e9
authored
Apr 26, 2023
by
Roberto Louro Magueta
Committed by
rmagueta
Jun 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove duplicated code
parent
8a820db2
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
96 additions
and
174 deletions
+96
-174
CMakeLists.txt
CMakeLists.txt
+5
-1
openair1/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
openair1/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
+10
-38
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
+19
-135
openair1/PHY/TOOLS/simde_operations.c
openair1/PHY/TOOLS/simde_operations.c
+60
-0
openair1/PHY/TOOLS/tools_defs.h
openair1/PHY/TOOLS/tools_defs.h
+2
-0
No files found.
CMakeLists.txt
View file @
917ff8e9
...
...
@@ -1071,6 +1071,7 @@ set(PHY_SRC_COMMON
${
OPENAIR1_DIR
}
/PHY/TOOLS/dB_routines.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/sqrt.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/lut.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/simde_operations.c
)
set
(
PHY_SRC
...
...
@@ -1206,6 +1207,7 @@ set(PHY_SRC_UE
${
OPENAIR1_DIR
}
/PHY/TOOLS/dB_routines.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/sqrt.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/lut.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/simde_operations.c
${
PHY_POLARSRC
}
${
PHY_SMALLBLOCKSRC
}
${
PHY_NR_CODINGIF
}
...
...
@@ -1258,6 +1260,7 @@ set(PHY_SRC_UE
${
OPENAIR1_DIR
}
/PHY/TOOLS/dB_routines.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/sqrt.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/lut.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/simde_operations.c
${
OPENAIR1_DIR
}
/PHY/INIT/nr_init_ue.c
# ${OPENAIR1_DIR}/SIMULATION/NR_UE_PHY/unit_tests/src/pucch_uci_test.c
${
PHY_POLARSRC
}
...
...
@@ -1306,8 +1309,9 @@ set(PHY_MEX_UE
${
OPENAIR1_DIR
}
/PHY/TOOLS/cadd_vv.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/cmult_sv.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/cmult_vv.c
${
OPENAIR1_DIR
}
/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/signal_energy.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/simde_operations.c
${
OPENAIR1_DIR
}
/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
${
OPENAIR1_DIR
}
/PHY/LTE_ESTIMATION/lte_ue_measurements.c
${
OPENAIR_DIR
}
/common/utils/LOG/log.c
${
OPENAIR_DIR
}
/common/utils/T/T.c
...
...
openair1/PHY/LTE_UE_TRANSPORT/dlsch_llr_computation_avx2.c
View file @
917ff8e9
...
...
@@ -121,34 +121,6 @@
tmp_result2 = simde_mm256_slli_epi16(tmp_result2, 1); \
const simde__m256i a_sq = simde_mm256_adds_epi16(tmp_result, tmp_result2);
void
seperate_real_imag_parts
(
__m256i
*
out_re
,
__m256i
*
out_im
,
__m256i
in0
,
__m256i
in1
)
{
__m256i
tmp0
;
__m256i
tmp1
;
in0
=
simde_mm256_shufflelo_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm256_shufflehi_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm256_shuffle_epi32
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm256_shufflelo_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm256_shufflehi_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm256_shuffle_epi32
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
// in0 = [Re(0,1,2,3) Im(0,1,2,3) Re(4,5,6,7) Im(4,5,6,7)]
// in0 = [Re(8,9,10,11) Im(8,9,10,11) Re(12,13,14,15) Im(12,13,14,15)]
tmp0
=
simde_mm256_unpacklo_epi64
(
in0
,
in1
);
// axmm2 = [Re(0,1,2,3) Re(8,9,10,11) Re(4,5,6,7) Re(12,13,14,15)]
tmp0
=
simde_mm256_permute4x64_epi64
(
tmp0
,
0xd8
);
// Re(rho)
tmp1
=
simde_mm256_unpackhi_epi64
(
in0
,
in1
);
// axmm3 = [Im(0,1,2,3) Im(8,9,10,11) Im(4,5,6,7) Im(12,13,14,15)]
tmp1
=
simde_mm256_permute4x64_epi64
(
tmp1
,
0xd8
);
// Im(rho)
*
out_re
=
tmp0
;
*
out_im
=
tmp1
;
}
void
qam64_qam16_avx2
(
short
*
stream0_in
,
short
*
stream1_in
,
short
*
ch_mag
,
...
...
@@ -245,7 +217,7 @@ void qam64_qam16_avx2(short *stream0_in,
xmm3 = _mm_unpackhi_epi64(xmm0,xmm1); // Im(rho)
*/
simde__m256i
xmm0
,
xmm2
,
xmm3
,
xmm4
,
xmm5
,
xmm6
,
xmm7
,
xmm8
;
s
epe
rate_real_imag_parts
(
&
xmm2
,
&
xmm3
,
rho01_256i
[
i
],
rho01_256i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
xmm2
,
&
xmm3
,
rho01_256i
[
i
],
rho01_256i
[
i
+
1
]);
const
simde__m256i
rho_rpi
=
simde_mm256_adds_epi16
(
xmm2
,
xmm3
);
// rho = Re(rho) + Im(rho)
const
simde__m256i
rho_rmi
=
simde_mm256_subs_epi16
(
xmm2
,
xmm3
);
// rho* = Re(rho) - Im(rho)
...
...
@@ -323,7 +295,7 @@ void qam64_qam16_avx2(short *stream0_in,
*/
simde__m256i
y1r
,
y1i
;
s
epe
rate_real_imag_parts
(
&
y1r
,
&
y1i
,
stream1_256i_in
[
i
],
stream1_256i_in
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
y1r
,
&
y1i
,
stream1_256i_in
[
i
],
stream1_256i_in
[
i
+
1
]);
// Psi_r calculation from rho_rpi or rho_rmi
xmm0
=
simde_mm256_broadcastw_epi16
(
_mm_set1_epi16
(
0
));
// ZERO for abs_pi16
...
...
@@ -604,7 +576,7 @@ void qam64_qam16_avx2(short *stream0_in,
y0i = simde_mm256_unpackhi_epi64(xmm0,xmm1);
*/
simde__m256i
y0r
,
y0i
;
s
epe
rate_real_imag_parts
(
&
y0r
,
&
y0i
,
stream0_256i_in
[
i
],
stream0_256i_in
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
y0r
,
&
y0i
,
stream0_256i_in
[
i
],
stream0_256i_in
[
i
+
1
]);
/*
// Rearrange desired channel magnitudes
...
...
@@ -619,7 +591,7 @@ void qam64_qam16_avx2(short *stream0_in,
ch_mag_des = simde_mm256_unpacklo_epi64(xmm2,xmm3);
*/
s
epe
rate_real_imag_parts
(
&
ch_mag_des
,
&
xmm2
,
ch_mag_256i
[
i
],
ch_mag_256i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
ch_mag_des
,
&
xmm2
,
ch_mag_256i
[
i
],
ch_mag_256i
[
i
+
1
]);
// Rearrange interfering channel magnitudes
/*
...
...
@@ -634,7 +606,7 @@ void qam64_qam16_avx2(short *stream0_in,
ch_mag_int = simde_mm256_unpacklo_epi64(xmm2,xmm3);
*/
s
epe
rate_real_imag_parts
(
&
ch_mag_int
,
&
xmm2
,
ch_mag_256i_i
[
i
],
ch_mag_256i_i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
ch_mag_int
,
&
xmm2
,
ch_mag_256i_i
[
i
],
ch_mag_256i_i
[
i
+
1
]);
y0r_one_over_sqrt_21
=
simde_mm256_mulhi_epi16
(
y0r
,
ONE_OVER_SQRT_42
);
y0r_three_over_sqrt_21
=
simde_mm256_mulhi_epi16
(
y0r
,
THREE_OVER_SQRT_42
);
...
...
@@ -1819,7 +1791,7 @@ void qam64_qam64_avx2(int32_t *stream0_in,
xmm3 = simde_mm256_permute4x64_epi64(xmm3,0xd8); // Im(rho)
*/
simde__m256i
xmm2
,
xmm3
,
xmm4
,
xmm5
,
xmm6
,
xmm7
,
xmm8
;
s
epe
rate_real_imag_parts
(
&
xmm2
,
&
xmm3
,
rho01_256i
[
i
],
rho01_256i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
xmm2
,
&
xmm3
,
rho01_256i
[
i
],
rho01_256i
[
i
+
1
]);
simde__m256i
rho_rpi
=
simde_mm256_adds_epi16
(
xmm2
,
xmm3
);
// rho = Re(rho) + Im(rho)
simde__m256i
rho_rmi
=
simde_mm256_subs_epi16
(
xmm2
,
xmm3
);
// rho* = Re(rho) - Im(rho)
...
...
@@ -1899,7 +1871,7 @@ void qam64_qam64_avx2(int32_t *stream0_in,
y1i = simde_mm256_permute4x64_epi64(y1i,0xd8); // Im(y1)
*/
simde__m256i
y1r
,
y1i
,
xmm0
;
s
epe
rate_real_imag_parts
(
&
y1r
,
&
y1i
,
stream1_256i_in
[
i
],
stream1_256i_in
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
y1r
,
&
y1i
,
stream1_256i_in
[
i
],
stream1_256i_in
[
i
+
1
]);
// Psi_r calculation from rho_rpi or rho_rmi
xmm0
=
simde_mm256_broadcastw_epi16
(
_mm_set1_epi16
(
0
));
// ZERO for abs_pi16
...
...
@@ -2181,7 +2153,7 @@ void qam64_qam64_avx2(int32_t *stream0_in,
y0i = _mm_unpackhi_epi64(xmm0,xmm1);
*/
simde__m256i
y0r
,
y0i
;
s
epe
rate_real_imag_parts
(
&
y0r
,
&
y0i
,
stream0_256i_in
[
i
],
stream0_256i_in
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
y0r
,
&
y0i
,
stream0_256i_in
[
i
],
stream0_256i_in
[
i
+
1
]);
// Rearrange desired channel magnitudes
// [|h|^2(1),|h|^2(1),|h|^2(2),|h|^2(2),...,,|h|^2(7),|h|^2(7)]*(2/sqrt(10))
...
...
@@ -2197,7 +2169,7 @@ void qam64_qam64_avx2(int32_t *stream0_in,
ch_mag_des = _mm_unpacklo_epi64(xmm2,xmm3);
*/
// xmm2 is dummy variable that contains the same values as ch_mag_des
s
epe
rate_real_imag_parts
(
&
ch_mag_des
,
&
xmm2
,
ch_mag_256i
[
i
],
ch_mag_256i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
ch_mag_des
,
&
xmm2
,
ch_mag_256i
[
i
],
ch_mag_256i
[
i
+
1
]);
// Rearrange interfering channel magnitudes
...
...
@@ -2212,7 +2184,7 @@ void qam64_qam64_avx2(int32_t *stream0_in,
xmm3 = _mm_shuffle_epi32(xmm3,0xd8); //_MM_SHUFFLE(0,2,1,3));
ch_mag_int = _mm_unpacklo_epi64(xmm2,xmm3);
*/
s
epe
rate_real_imag_parts
(
&
ch_mag_int
,
&
xmm2
,
ch_mag_256i_i
[
i
],
ch_mag_256i_i
[
i
+
1
]);
s
imde_mm256_sepa
rate_real_imag_parts
(
&
ch_mag_int
,
&
xmm2
,
ch_mag_256i_i
[
i
],
ch_mag_256i_i
[
i
+
1
]);
y0r_one_over_sqrt_21
=
simde_mm256_mulhi_epi16
(
y0r
,
ONE_OVER_SQRT_42
);
y0r_three_over_sqrt_21
=
simde_mm256_mulhi_epi16
(
y0r
,
THREE_OVER_SQRT_42
);
...
...
openair1/PHY/NR_TRANSPORT/nr_ulsch_llr_computation.c
View file @
917ff8e9
This diff is collapsed.
Click to expand it.
openair1/PHY/TOOLS/simde_operations.c
0 → 100644
View file @
917ff8e9
/*
* Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The OpenAirInterface Software Alliance licenses this file to You under
* the OAI Public License, Version 1.1 (the "License"); you may not use this file
* except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.openairinterface.org/?page_id=698
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*-------------------------------------------------------------------------------
* For more information about the OpenAirInterface (OAI) Software Alliance:
* contact@openairinterface.org
*/
#include <simde/x86/avx2.h>
void
simde_mm128_separate_real_imag_parts
(
__m128i
*
out_re
,
__m128i
*
out_im
,
__m128i
in0
,
__m128i
in1
)
{
// Put in0 = [Re(0,1) Re(2,3) Im(0,1) Im(2,3)]
in0
=
simde_mm_shufflelo_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm_shufflehi_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm_shuffle_epi32
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
// Put xmm1 = [Re(4,5) Re(6,7) Im(4,5) Im(6,7)]
in1
=
simde_mm_shufflelo_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm_shufflehi_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm_shuffle_epi32
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
*
out_re
=
simde_mm_unpacklo_epi64
(
in0
,
in1
);
*
out_im
=
simde_mm_unpackhi_epi64
(
in0
,
in1
);
}
void
simde_mm256_separate_real_imag_parts
(
__m256i
*
out_re
,
__m256i
*
out_im
,
__m256i
in0
,
__m256i
in1
)
{
// Put in0 = [Re(0,1,2,3) Im(0,1,2,3) Re(4,5,6,7) Im(4,5,6,7)]
in0
=
simde_mm256_shufflelo_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm256_shufflehi_epi16
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in0
=
simde_mm256_shuffle_epi32
(
in0
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
// Put in1 = [Re(8,9,10,11) Im(8,9,10,11) Re(12,13,14,15) Im(12,13,14,15)]
in1
=
simde_mm256_shufflelo_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm256_shufflehi_epi16
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
in1
=
simde_mm256_shuffle_epi32
(
in1
,
0xd8
);
//_MM_SHUFFLE(0,2,1,3));
// Put tmp0 =[Re(0,1,2,3) Re(8,9,10,11) Re(4,5,6,7) Re(12,13,14,15)]
__m256i
tmp0
=
simde_mm256_unpacklo_epi64
(
in0
,
in1
);
// Put tmp1 = [Im(0,1,2,3) Im(8,9,10,11) Im(4,5,6,7) Im(12,13,14,15)]
__m256i
tmp1
=
simde_mm256_unpackhi_epi64
(
in0
,
in1
);
*
out_re
=
simde_mm256_permute4x64_epi64
(
tmp0
,
0xd8
);
*
out_im
=
simde_mm256_permute4x64_epi64
(
tmp1
,
0xd8
);
}
\ No newline at end of file
openair1/PHY/TOOLS/tools_defs.h
View file @
917ff8e9
...
...
@@ -851,6 +851,8 @@ c32_t dot_product(const c16_t *x,
double
interp
(
double
x
,
double
*
xs
,
double
*
ys
,
int
count
);
void
simde_mm128_separate_real_imag_parts
(
__m128i
*
out_re
,
__m128i
*
out_im
,
__m128i
in0
,
__m128i
in1
);
void
simde_mm256_separate_real_imag_parts
(
__m256i
*
out_re
,
__m256i
*
out_im
,
__m256i
in0
,
__m256i
in1
);
#ifdef __cplusplus
}
...
...
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