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
0e80157c
Commit
0e80157c
authored
May 03, 2018
by
Raymond Knopp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for dlsim compilation for aarch64
parent
7156ccb8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
+3
-4
openair1/PHY/TOOLS/cmult_vv.c
openair1/PHY/TOOLS/cmult_vv.c
+1
-0
openair1/PHY/TOOLS/signal_energy.c
openair1/PHY/TOOLS/signal_energy.c
+1
-1
openair1/SIMULATION/LTE_PHY/ulsim.c
openair1/SIMULATION/LTE_PHY/ulsim.c
+1
-1
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_demodulation.c
View file @
0e80157c
...
...
@@ -2118,6 +2118,9 @@ void dlsch_channel_compensation_TM56(int **rxdataF_ext,
//printf("eNB_id %d, symbol %d: precoded CQI %d dB\n",eNB_id,symbol,
// measurements->precoded_cqi_dB[eNB_id][0]);
_mm_empty
();
_m_empty
();
#elif defined(__arm__) || defined(__aarch64__)
uint32_t
rb
,
Nre
;
...
...
@@ -2296,8 +2299,6 @@ void dlsch_channel_compensation_TM56(int **rxdataF_ext,
// measurements->precoded_cqi_dB[eNB_id][0]);
#endif
_mm_empty
();
_m_empty
();
}
void
dlsch_channel_compensation_TM34
(
LTE_DL_FRAME_PARMS
*
frame_parms
,
...
...
@@ -6038,8 +6039,6 @@ unsigned short dlsch_extract_rbs_TM7(int **rxdataF,
}
}
_mm_empty
();
_m_empty
();
return
(
nb_rb
/
frame_parms
->
nb_antennas_rx
);
}
...
...
openair1/PHY/TOOLS/cmult_vv.c
View file @
0e80157c
...
...
@@ -21,6 +21,7 @@
#include "defs.h"
#include <stdio.h>
#include "assertions.h"
#if defined(__x86_64__) || defined(__i386__)
int16_t
conjug
[
8
]
__attribute__
((
aligned
(
16
)))
=
{
-
1
,
1
,
-
1
,
1
,
-
1
,
1
,
-
1
,
1
}
;
...
...
openair1/PHY/TOOLS/signal_energy.c
View file @
0e80157c
...
...
@@ -173,7 +173,7 @@ int32_t signal_energy_nodc(int32_t *input,uint32_t length)
return
((
temp
>
0
)
?
temp
:
1
);
}
#elif defined(__arm__)
#elif defined(__arm__)
|| defined(__aarch64__)
int32_t
signal_energy
(
int32_t
*
input
,
uint32_t
length
)
{
...
...
openair1/SIMULATION/LTE_PHY/ulsim.c
View file @
0e80157c
...
...
@@ -303,7 +303,7 @@ extern void eNB_fep_full_2thread(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc);
int
main
(
int
argc
,
char
**
argv
)
{
char
c
;
int
c
;
int
i
,
j
,
aa
,
u
;
PHY_VARS_eNB
*
eNB
;
PHY_VARS_UE
*
UE
;
...
...
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