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
zzha zzha
OpenXG-RAN
Commits
790ba356
Commit
790ba356
authored
Dec 04, 2015
by
lukashov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
one more bug in measurements
parent
6df0e462
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
+7
-2
No files found.
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
View file @
790ba356
...
...
@@ -596,8 +596,10 @@ void lte_ue_measurements(PHY_VARS_UE *phy_vars_ue,
// pmi
#if defined(__x86_64__) || defined(__i386__)
pmi128_re
=
_mm_setzero_si128
();
pmi128_im
=
_mm_setzero_si128
();
pmi128_re
=
_mm_xor_si128
(
pmi128_re
,
pmi128_re
);
pmi128_im
=
_mm_xor_si128
(
pmi128_im
,
pmi128_im
);
#elif defined(__arm__)
pmi128_re
=
vdupq_n_s32
(
0
);
pmi128_im
=
vdupq_n_s32
(
0
);
...
...
@@ -610,6 +612,9 @@ void lte_ue_measurements(PHY_VARS_UE *phy_vars_ue,
limit
=
last_subband_size
>>
2
;
for
(
i
=
0
;
i
<
limit
;
i
++
)
{
mmtmpPMI0
=
_mm_xor_si128
(
mmtmpPMI0
,
mmtmpPMI0
);
mmtmpPMI1
=
_mm_xor_si128
(
mmtmpPMI1
,
mmtmpPMI1
);
// For each RE in subband perform ch0 * conj(ch1)
// multiply by conjugated channel
...
...
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