Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patricio Latini
openairinterface5G
Commits
158177dc
Commit
158177dc
authored
8 years ago
by
Makarand Kulkarni
Browse files
Options
Downloads
Patches
Plain Diff
added fixes to build on odroid/xu4 platform
parent
d1775abe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
openair1/PHY/CODING/3gpplte_sse.c
+1
-1
1 addition, 1 deletion
openair1/PHY/CODING/3gpplte_sse.c
openair1/PHY/TOOLS/lte_dfts.c
+4
-4
4 additions, 4 deletions
openair1/PHY/TOOLS/lte_dfts.c
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
+4
-0
4 additions, 0 deletions
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
with
9 additions
and
5 deletions
openair1/PHY/CODING/3gpplte_sse.c
+
1
−
1
View file @
158177dc
...
...
@@ -598,7 +598,7 @@ void threegpplte_turbo_encoder(unsigned char *input,
#elif defined(__arm__)
*
ptr_output
++
=
vadd_u8
(
all_treillis
[
state0
][
cur_s1
].
systematic_andp1_64
[
code_rate
],
all_treillis
[
state0
][
cur_s1
].
parity
1
_64
[
code_rate
]);
all_treillis
[
state0
][
cur_s1
].
parity
2
_64
[
code_rate
]);
#endif
}
...
...
This diff is collapsed.
Click to expand it.
openair1/PHY/TOOLS/lte_dfts.c
+
4
−
4
View file @
158177dc
...
...
@@ -635,7 +635,7 @@ static inline void bfly2_tw1(int16x8_t *x0, int16x8_t *x1, int16x8_t *y0, int16x
}
#endif
#if defined(__x86_64__) || defined(__i386__)
...
...
@@ -689,9 +689,9 @@ static inline void bfly2_16_256(__m256i *x0, __m256i *x1, __m256i *y0, __m256i *
#elif defined(__arm__)
static inline void bfly2_
tw
1(int16x8_t *x0, int16x8_t *x1, int16x8_t *y0, int16x8_t *y1)__attribute__((always_inline));
static inline void bfly2_1
6
(int16x8_t *x0, int16x8_t *x1, int16x8_t *y0, int16x8_t *y1
, int16x8_t *tw, int16x8_t *twb
)__attribute__((always_inline));
static inline void bfly2_
tw
1(int16x8_t *x0, int16x8_t *x1, int16x8_t *y0, int16x8_t *y1)
static inline void bfly2_1
6
(int16x8_t *x0, int16x8_t *x1, int16x8_t *y0, int16x8_t *y1
, int16x8_t *tw, int16x8_t *twb
)
{
*y0 = vqaddq_s16(*x0,*x1);
...
...
@@ -2633,6 +2633,7 @@ int16_t tw64crep[192] __attribute__((aligned(32))) = {
#define shiftright_int16_simd256(a,shift) _mm256_srai_epi16(a,shift)
#define set1_int16_simd256(a) _mm256_set1_epi16(a);
#define mulhi_int16_simd256(a,b) _mm256_slli_epi16(_mm256_mulhi_epi16(a,b),1);
#endif
#elif defined(__arm__)
#define simd_q15_t int16x8_t
...
...
@@ -2643,7 +2644,6 @@ int16_t tw64crep[192] __attribute__((aligned(32))) = {
#define _mm_empty()
#define _m_empty()
#endif
#endif
#ifndef __AVX2__
This diff is collapsed.
Click to expand it.
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
+
4
−
0
View file @
158177dc
...
...
@@ -55,6 +55,10 @@
# include <immintrin.h>
#endif
#ifdef __arm__
# include <arm_neon.h>
#endif
/** @addtogroup _USRP_PHY_RF_INTERFACE_
* @{
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment