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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
ed8682f8
Commit
ed8682f8
authored
Apr 11, 2024
by
Romain Beurdouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(ldpc-decoding-module-interface-rework): slot decoding with T2
parent
d5adc244
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1640 additions
and
3 deletions
+1640
-3
CMakeLists.txt
CMakeLists.txt
+12
-3
openair1/PHY/CODING/nrLDPC_decoder/nr_ulsch_decoding_t2.c
openair1/PHY/CODING/nrLDPC_decoder/nr_ulsch_decoding_t2.c
+1627
-0
openair1/SIMULATION/NR_PHY/dlsim.c
openair1/SIMULATION/NR_PHY/dlsim.c
+1
-0
No files found.
CMakeLists.txt
View file @
ed8682f8
...
@@ -513,6 +513,14 @@ if (ENABLE_LDPC_T2)
...
@@ -513,6 +513,14 @@ if (ENABLE_LDPC_T2)
add_library
(
ldpc_t2 MODULE
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_offload.c
)
add_library
(
ldpc_t2 MODULE
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder_offload.c
)
set_target_properties
(
ldpc_t2 PROPERTIES COMPILE_FLAGS
"-DALLOW_EXPERIMENTAL_API"
)
set_target_properties
(
ldpc_t2 PROPERTIES COMPILE_FLAGS
"-DALLOW_EXPERIMENTAL_API"
)
target_link_libraries
(
ldpc_t2
${
LIBDPDK_T2_LDFLAGS
}
${
PMD_T2
}
)
target_link_libraries
(
ldpc_t2
${
LIBDPDK_T2_LDFLAGS
}
${
PMD_T2
}
)
set
(
PHY_LDPC_SLOT_T2_SRC
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_decoder/nr_ulsch_decoding_t2.c
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_decoder/nrLDPC_decoder.c
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_encoder/ldpc_encoder_optim8segmulti.c
)
add_library
(
ldpc_slot_t2 MODULE
${
PHY_LDPC_SLOT_T2_SRC
}
)
set_target_properties
(
ldpc_slot_t2 PROPERTIES COMPILE_FLAGS
"-DALLOW_EXPERIMENTAL_API"
)
target_link_libraries
(
ldpc_slot_t2 PRIVATE ldpc_gen_HEADERS
${
LIBDPDK_T2_LDFLAGS
}
${
PMD_T2
}
)
endif
()
endif
()
##########################################################
##########################################################
...
@@ -2106,7 +2114,7 @@ endif()
...
@@ -2106,7 +2114,7 @@ endif()
add_dependencies
(
nr-softmodem ldpc_orig ldpc_optim ldpc_optim8seg ldpc ldpc_slot_demo
)
add_dependencies
(
nr-softmodem ldpc_orig ldpc_optim ldpc_optim8seg ldpc ldpc_slot_demo
)
if
(
ENABLE_LDPC_T2
)
if
(
ENABLE_LDPC_T2
)
add_dependencies
(
nr-softmodem ldpc_t2
)
add_dependencies
(
nr-softmodem ldpc_t2
ldpc_slot_t2
)
endif
()
endif
()
# force the generation of ASN.1 so that we don't need to wait during the build
# force the generation of ASN.1 so that we don't need to wait during the build
...
@@ -2338,7 +2346,7 @@ add_executable(nr_ulsim
...
@@ -2338,7 +2346,7 @@ add_executable(nr_ulsim
)
)
if
(
ENABLE_LDPC_T2
)
if
(
ENABLE_LDPC_T2
)
add_dependencies
(
nr_ulsim ldpc_t2
)
add_dependencies
(
nr_ulsim ldpc_t2
ldpc_slot_t2
)
endif
()
endif
()
add_dependencies
(
nr_ulsim ldpc_slot_demo
)
add_dependencies
(
nr_ulsim ldpc_slot_demo
)
...
@@ -2407,7 +2415,8 @@ if (${T_TRACER})
...
@@ -2407,7 +2415,8 @@ if (${T_TRACER})
PHY_COMMON PHY PHY_UE PHY_NR PHY_NR_COMMON PHY_NR_UE PHY_RU PHY_MEX
PHY_COMMON PHY PHY_UE PHY_NR PHY_NR_COMMON PHY_NR_UE PHY_RU PHY_MEX
L2 L2_LTE L2_NR L2_LTE_NR L2_UE NR_L2_UE L2_UE_LTE_NR MAC_NR_COMMON MAC_UE_NR ngap
L2 L2_LTE L2_NR L2_LTE_NR L2_UE NR_L2_UE L2_UE_LTE_NR MAC_NR_COMMON MAC_UE_NR ngap
CN_UTILS GTPV1U SCTP_CLIENT MME_APP LIB_NAS_UE NB_IoT SIMU SIMU_ETH OPENAIR0_LIB
CN_UTILS GTPV1U SCTP_CLIENT MME_APP LIB_NAS_UE NB_IoT SIMU SIMU_ETH OPENAIR0_LIB
ldpc_orig ldpc_optim ldpc_optim8seg ldpc_t2 ldpc_cl ldpc_cuda ldpc ldpc_slot_demo dfts config_internals
)
ldpc_orig ldpc_optim ldpc_optim8seg ldpc_t2 ldpc_cl ldpc_cuda ldpc
ldpc_slot_demo ldpc_slot_t2 dfts config_internals
)
if
(
TARGET
${
i
}
)
if
(
TARGET
${
i
}
)
add_dependencies
(
${
i
}
generate_T
)
add_dependencies
(
${
i
}
generate_T
)
endif
()
endif
()
...
...
openair1/PHY/CODING/nrLDPC_decoder/nr_ulsch_decoding_t2.c
0 → 100644
View file @
ed8682f8
This diff is collapsed.
Click to expand it.
openair1/SIMULATION/NR_PHY/dlsim.c
View file @
ed8682f8
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
#include "PHY/defs_nr_UE.h"
#include "PHY/defs_nr_UE.h"
#include "PHY/phy_vars_nr_ue.h"
#include "PHY/phy_vars_nr_ue.h"
#include "PHY/types.h"
#include "PHY/types.h"
#include "PHY/CODING/nr_ulsch_decoding_interface.h"
#include "PHY/INIT/nr_phy_init.h"
#include "PHY/INIT/nr_phy_init.h"
#include "PHY/MODULATION/modulation_eNB.h"
#include "PHY/MODULATION/modulation_eNB.h"
#include "PHY/MODULATION/nr_modulation.h"
#include "PHY/MODULATION/nr_modulation.h"
...
...
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