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
Michael Black
OpenXG-RAN
Commits
14ead921
Commit
14ead921
authored
May 17, 2023
by
Raymond Knopp
Committed by
laurent
Jun 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added links for cblas on aarch64 (Ubuntu 22.04 Pro)
parent
9c420c24
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
CMakeLists.txt
CMakeLists.txt
+7
-0
openair1/PHY/LTE_ESTIMATION/lte_est_freq_offset.c
openair1/PHY/LTE_ESTIMATION/lte_est_freq_offset.c
+1
-1
openair1/PHY/TOOLS/cmult_sv.c
openair1/PHY/TOOLS/cmult_sv.c
+4
-0
No files found.
CMakeLists.txt
View file @
14ead921
...
...
@@ -134,6 +134,13 @@ elseif(EXISTS "/usr/include/x86_64-linux-gnu/cblas.h")
list
(
APPEND ATLAS_LIBRARIES atlas
)
list
(
APPEND ATLAS_LIBRARIES lapack
)
elseif
(
EXISTS
"/usr/include/aarch64-linux-gnu/cblas.h"
)
include_directories
(
"/usr/include/aarch64-linux-gnu"
)
LINK_DIRECTORIES
(
"/usr/lib/aarch64-linux-gnu"
)
list
(
APPEND ATLAS_LIBRARIES cblas
)
list
(
APPEND ATLAS_LIBRARIES atlas
)
list
(
APPEND ATLAS_LIBRARIES lapack
)
else
()
message
(
"No Blas/Atlas libs found, some targets will fail"
)
endif
()
...
...
openair1/PHY/LTE_ESTIMATION/lte_est_freq_offset.c
View file @
14ead921
...
...
@@ -36,7 +36,7 @@ int dl_channel_level(c16_t *dl_ch, LTE_DL_FRAME_PARMS *frame_parms)
int
avg
;
//clear average level
__m128i
avg128F
=
simde_mm_setzero_si128
();
simde
__m128i
avg128F
=
simde_mm_setzero_si128
();
dl_ch128
=
(
simde__m128i
*
)
dl_ch
;
for
(
rb
=
0
;
rb
<
frame_parms
->
N_RB_DL
;
rb
++
)
{
...
...
openair1/PHY/TOOLS/cmult_sv.c
View file @
14ead921
...
...
@@ -74,6 +74,10 @@ void multadd_real_vector_complex_scalar(const int16_t *x, const int16_t *alpha,
}
}
#if defined(__aarch64__) || defined(__arm__)
#define __builtin_cpu_supports(a) 0
#endif
void
rotate_cpx_vector
(
c16_t
*
x
,
c16_t
*
alpha
,
c16_t
*
y
,
...
...
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