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
canghaiwuhen
OpenXG-RAN
Commits
a28bd74b
Commit
a28bd74b
authored
May 20, 2018
by
Paolo Monti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build for x86_64
parent
813a21e5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
+2
-2
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
+2
-2
openair1/PHY/TOOLS/cadd_vv.c
openair1/PHY/TOOLS/cadd_vv.c
+3
-3
openair1/SIMULATION/TOOLS/random_channel.c
openair1/SIMULATION/TOOLS/random_channel.c
+1
-1
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
View file @
a28bd74b
...
...
@@ -1905,7 +1905,7 @@ void prec2A_TM4_128(int pmi,__m128i *ch0,__m128i *ch1) {
// print_shorts("prec2A_TM4 ch0 (end):",ch0);
//print_shorts("prec2A_TM4 ch1 (end):",ch1);
}
#el
s
if defined(__arm__) || defined(__aarch64__)
#elif defined(__arm__) || defined(__aarch64__)
void
prec2A_TM4_128
(
int
pmi
,
int16x8_t
*
ch0
,
int16x8_t
*
ch1
)
{
AssertFatal
(
1
==
0
,
"To be done for ARM
\n
"
);
}
...
...
@@ -3454,7 +3454,7 @@ void dlsch_detection_mrc_TM34(LTE_DL_FRAME_PARMS *frame_parms,
_mm_empty
();
_m_empty
();
#el
s
if defined(__arm__) || defined(__aarch64__)
#elif defined(__arm__) || defined(__aarch64__)
AssertFatal
(
1
==
0
,
"To be done for ARM
\n
"
);
#endif
}
...
...
openair1/PHY/LTE_TRANSPORT/dlsch_llr_computation.c
View file @
a28bd74b
...
...
@@ -1036,7 +1036,7 @@ void dlsch_16qam_llr_SIC (LTE_DL_FRAME_PARMS *frame_parms,
}
_mm_empty
();
_m_empty
();
#el
s
if defined(__arm__) || defined(__aarch64__)
#elif defined(__arm__) || defined(__aarch64__)
AssertFatal
(
1
==
0
,
"To be done for ARM
\n
"
);
#endif
}
...
...
@@ -1362,7 +1362,7 @@ void dlsch_64qam_llr_SIC(LTE_DL_FRAME_PARMS *frame_parms,
_mm_empty
();
_m_empty
();
#el
s
if defined(__arm__) || defined(__aarch64__)
#elif defined(__arm__) || defined(__aarch64__)
AssertFatal
(
1
==
0
,
"To be done for ARM
\n
"
);
#endif
}
...
...
openair1/PHY/TOOLS/cadd_vv.c
View file @
a28bd74b
...
...
@@ -24,13 +24,13 @@
#define simd_q15_t __m128i
#define simd_q31_t __m128i
#define simd_q63_t __m128i
#define simd_q15_short_t __m64
i
#define simd_q15_short_t __m64
#define simd_q15_add(a,b) _mm_adds_epi16(a,b)
#define simd_q63_add(a,b) _mm_add_epi64(a,b)
#define simd_q15_sub(a,b) _mm_subs_epi16(a,b)
#define simd_q63_sub(a,b) _mm_sub
s
_epi64(a,b)
#define simd_q63_sub(a,b) _mm_sub_epi64(a,b)
#define simd_q15_add_short(a,b) _mm_adds_pi16(a,b)
#define simd_q31_add(a,b) _mm_add
s
_epi32(a,b)
#define simd_q31_add(a,b) _mm_add_epi32(a,b)
#ifdef __AVX2__
#define simd256_q15_t __m256i
#endif
...
...
openair1/SIMULATION/TOOLS/random_channel.c
View file @
a28bd74b
...
...
@@ -34,7 +34,7 @@
#if defined(__i386__) || defined(__x86_64__)
extern
void
print_shorts
(
char
*
s
,
__m128i
*
x
);
#el
s
if defined (__arm__) || defined(__aarch64__)
#elif defined (__arm__) || defined(__aarch64__)
extern
void
print_shorts
(
char
*
s
,
int16x8_t
*
x
);
#endif
void
fill_channel_desc
(
channel_desc_t
*
chan_desc
,
...
...
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