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
3acb40cb
Commit
3acb40cb
authored
Jun 16, 2026
by
Luis Pereira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump SIMDE commit to the most up-to-date (1c68d9a)
Signed-off-by:
Luis Pereira
<
lpereira@allbesmart.pt
>
parent
0dab3bb6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
cmake_targets/tools/build_helper
cmake_targets/tools/build_helper
+2
-2
openair1/PHY/MODULATION/nr_modulation.c
openair1/PHY/MODULATION/nr_modulation.c
+3
-1
No files found.
cmake_targets/tools/build_helper
View file @
3acb40cb
...
@@ -494,8 +494,8 @@ install_simde_from_source(){
...
@@ -494,8 +494,8 @@ install_simde_from_source(){
if [[ -v SIMDE_VERSION ]]; then
if [[ -v SIMDE_VERSION ]]; then
git checkout -f $SIMDE_VERSION
git checkout -f $SIMDE_VERSION
else
else
# At time of writing, last working commit for OAI:
c7f26b7
# At time of writing, last working commit for OAI:
1c68d9a
git checkout
c7f26b73ba8e874b95c2cec2b497826ad2188f68
git checkout
1c68d9ad60bf63f3fb527c4ee3b2319d828ffcc6
fi
fi
# Showing which version is used
# Showing which version is used
git log -n1
git log -n1
...
...
openair1/PHY/MODULATION/nr_modulation.c
View file @
3acb40cb
...
@@ -7,8 +7,10 @@
...
@@ -7,8 +7,10 @@
#include "PHY/NR_REFSIG/nr_mod_table.h"
#include "PHY/NR_REFSIG/nr_mod_table.h"
#include "executables/softmodem-common.h"
#include "executables/softmodem-common.h"
#include <simde/x86/avx512.h>
#include <simde/x86/avx512.h>
// Lacking declaration in present simde external package, will be detected as compilation error when they will add it
// Lacking declaration in older implementations of simde external package, so let's keep it for now to be backwards compatible
#if !defined(simde_mm512_extracti64x2_epi64)
#define simde_mm512_extracti64x2_epi64(a...) _mm512_extracti64x2_epi64(a)
#define simde_mm512_extracti64x2_epi64(a...) _mm512_extracti64x2_epi64(a)
#endif
// #define DEBUG_DLSCH_PRECODING_PRINT_WITH_TRIVIAL // TODO: For debug, to be removed if want to merge to develop
// #define DEBUG_DLSCH_PRECODING_PRINT_WITH_TRIVIAL // TODO: For debug, to be removed if want to merge to develop
// #define DEBUG_LAYER_MAPPING
// #define DEBUG_LAYER_MAPPING
...
...
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