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
8e833302
Commit
8e833302
authored
Dec 27, 2022
by
Raymond Knopp
Committed by
laurent
Apr 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing on Xeon
parent
bd9f998d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
CMakeLists.txt
CMakeLists.txt
+2
-2
openair1/PHY/TOOLS/cmult_sv.c
openair1/PHY/TOOLS/cmult_sv.c
+0
-3
openair1/PHY/TOOLS/oai_dfts_neon.c
openair1/PHY/TOOLS/oai_dfts_neon.c
+0
-2
No files found.
CMakeLists.txt
View file @
8e833302
...
@@ -155,7 +155,7 @@ if(EXISTS "/proc/cpuinfo")
...
@@ -155,7 +155,7 @@ if(EXISTS "/proc/cpuinfo")
else
()
else
()
message
(
WARNING
"did not find /proc/cpuinfo -- not setting any x86-specific compilation variables"
)
message
(
WARNING
"did not find /proc/cpuinfo -- not setting any x86-specific compilation variables"
)
endif
()
endif
()
eval_boolean
(
AUTODETECT_AVX512 DEFINED CPUFLAGS AND CPUFLAGS MATCHES
"avx512"
)
eval_boolean
(
AUTODETECT_AVX512 DEFINED CPUFLAGS AND CPUFLAGS MATCHES
"avx512"
)
add_boolean_option
(
AVX512
${
AUTODETECT_AVX512
}
"Whether AVX512 intrinsics is available on the host processor"
ON
)
add_boolean_option
(
AVX512
${
AUTODETECT_AVX512
}
"Whether AVX512 intrinsics is available on the host processor"
ON
)
...
@@ -245,7 +245,7 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -ggdb2 -Wl,-rpath -Wl,${C
...
@@ -245,7 +245,7 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -ggdb2 -Wl,-rpath -Wl,${C
# these changes are related to hardcoded path to include .h files
# these changes are related to hardcoded path to include .h files
set
(
debugOpt
"-ggdb2 -DMALLOC_CHECK_=3 -fno-delete-null-pointer-checks"
)
set
(
debugOpt
"-ggdb2 -DMALLOC_CHECK_=3 -fno-delete-null-pointer-checks"
)
set
(
CMAKE_C_FLAGS_DEBUG
"
${
debugOpt
}
-O0"
)
set
(
CMAKE_C_FLAGS_DEBUG
"
${
debugOpt
}
-O0"
)
set
(
CMAKE_C_FLAGS_RELWITHDEBINFO
"
${
debugOpt
}
-O
3
"
)
set
(
CMAKE_C_FLAGS_RELWITHDEBINFO
"
${
debugOpt
}
-O
2
"
)
set
(
CMAKE_C_FLAGS_RELEASE
"-O3"
)
set
(
CMAKE_C_FLAGS_RELEASE
"-O3"
)
# Enable assert() for RelWithDebInfo builds
# Enable assert() for RelWithDebInfo builds
...
...
openair1/PHY/TOOLS/cmult_sv.c
View file @
8e833302
...
@@ -21,9 +21,6 @@
...
@@ -21,9 +21,6 @@
#include "PHY/sse_intrin.h"
#include "PHY/sse_intrin.h"
#include "tools_defs.h"
#include "tools_defs.h"
#include <simde/simde-common.h>
#include <simde/arm/neon.h>
#include <simde/x86/sse.h>
void
multadd_complex_vector_real_scalar
(
int16_t
*
x
,
void
multadd_complex_vector_real_scalar
(
int16_t
*
x
,
int16_t
alpha
,
int16_t
alpha
,
...
...
openair1/PHY/TOOLS/oai_dfts_neon.c
View file @
8e833302
...
@@ -518,7 +518,6 @@ static inline void bfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t
...
@@ -518,7 +518,6 @@ static inline void bfly4_16(int16x8_t *x0,int16x8_t *x1,int16x8_t *x2,int16x8_t
*
(
y1
)
=
vqaddq_s16
(
x02t
,
x13t
);
// x0 + x1f - x2 - x3f
*
(
y1
)
=
vqaddq_s16
(
x02t
,
x13t
);
// x0 + x1f - x2 - x3f
*
(
y3
)
=
vqsubq_s16
(
x02t
,
x13t
);
// x0 - x1f - x2 + x3f
*
(
y3
)
=
vqsubq_s16
(
x02t
,
x13t
);
// x0 - x1f - x2 + x3f
}
}
#endif
static
inline
void
ibfly4_16
(
int16x8_t
*
x0
,
int16x8_t
*
x1
,
int16x8_t
*
x2
,
int16x8_t
*
x3
,
static
inline
void
ibfly4_16
(
int16x8_t
*
x0
,
int16x8_t
*
x1
,
int16x8_t
*
x2
,
int16x8_t
*
x3
,
int16x8_t
*
y0
,
int16x8_t
*
y1
,
int16x8_t
*
y2
,
int16x8_t
*
y3
,
int16x8_t
*
y0
,
int16x8_t
*
y1
,
int16x8_t
*
y2
,
int16x8_t
*
y3
,
...
@@ -7305,7 +7304,6 @@ int write_output(const char *fname,const char *vname,void *data,int length,int d
...
@@ -7305,7 +7304,6 @@ int write_output(const char *fname,const char *vname,void *data,int length,int d
return
0
;
return
0
;
}
}
#ifdef MR_MAIN
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
{
{
...
...
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