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
常顺宇
OpenXG-RAN
Commits
ebb490d9
Commit
ebb490d9
authored
7 years ago
by
Massive
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disabling the LDPC decoder on machines that do not have AVX2
parent
9d2ca1ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+2
-2
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
+2
-0
No files found.
cmake_targets/CMakeLists.txt
View file @
ebb490d9
...
...
@@ -1087,7 +1087,7 @@ set(PHY_SRC
${
OPENAIR1_DIR
}
/PHY/LTE_REFSIG/lte_ul_ref.c
${
OPENAIR1_DIR
}
/PHY/CODING/lte_segmentation.c
${
OPENAIR1_DIR
}
/PHY/CODING/nr_segmentation.c
${
OPENAIR1_DIR
}
/PHY/CODING/
nrLDPC
_decoder.c
${
OPENAIR1_DIR
}
/PHY/CODING/
ldpc
_decoder.c
${
OPENAIR1_DIR
}
/PHY/CODING/ldpc_encoder.c
${
OPENAIR1_DIR
}
/PHY/CODING/ccoding_byte.c
${
OPENAIR1_DIR
}
/PHY/CODING/ccoding_byte_lte.c
...
...
@@ -1122,7 +1122,7 @@ if (${SMBV})
endif
(
${
SMBV
}
)
if
(
${
COMPILATION_AVX2
}
STREQUAL
"True"
)
set
(
PHY_SRC
${
PHY_SRC
}
${
OPENAIR1_DIR
}
/PHY/LTE_TRANSPORT/dlsch_llr_computation_avx2.c
)
set
(
PHY_SRC
${
PHY_SRC
}
${
OPENAIR1_DIR
}
/PHY/LTE_TRANSPORT/dlsch_llr_computation_avx2.c
${
OPENAIR1_DIR
}
/PHY/CODING/nrLDPC_decoder.c
)
endif
()
add_library
(
PHY
${
PHY_SRC
}
)
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
View file @
ebb490d9
...
...
@@ -589,10 +589,12 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
printf
(
"starting ldpc decoder Z %d, BG %d, R %d
\n
"
,
p_decParams
->
Z
,
p_decParams
->
BG
,
p_decParams
->
R
);
/*
nrLDPC_decoder(p_decParams,
(int8_t*) &pl[0],
(int8_t*) harq_process->c[r],
p_procTime);
*/
#endif
#ifdef DEBUG_DLSCH_DECODING
...
...
This diff is collapsed.
Click to expand it.
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