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
41aadcc5
Commit
41aadcc5
authored
Mar 28, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment write-only variable
parent
beef5461
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
+5
-4
No files found.
openair1/PHY/LTE_ESTIMATION/lte_ue_measurements.c
View file @
41aadcc5
...
...
@@ -609,12 +609,13 @@ void det_HhH(int32_t *after_mf_00,
{
unsigned
short
rb
;
__m128i
*
after_mf_00_128
,
*
after_mf_01_128
,
*
after_mf_10_128
,
*
after_mf_11_128
,
ad_re_128
,
bc_re_128
;
__m128i
*
after_mf_00_128
,
*
after_mf_01_128
,
*
after_mf_11_128
,
ad_re_128
,
bc_re_128
;
//__m128i *after_mf_10_128; // the variable is only written, but leave it here for "symmetry" in the algorithm
__m128i
*
det_fin_128
,
det_128
;
after_mf_00_128
=
(
__m128i
*
)
after_mf_00
;
after_mf_01_128
=
(
__m128i
*
)
after_mf_01
;
after_mf_10_128
=
(
__m128i
*
)
after_mf_10
;
//
after_mf_10_128 = (__m128i *)after_mf_10;
after_mf_11_128
=
(
__m128i
*
)
after_mf_11
;
det_fin_128
=
(
__m128i
*
)
det_fin
;
...
...
@@ -630,7 +631,7 @@ void det_HhH(int32_t *after_mf_00,
printf
(
"
\n
Computing denominator
\n
"
);
print_shorts
(
"after_mf_00_128:"
,(
int16_t
*
)
&
after_mf_00_128
[
0
]);
print_shorts
(
"after_mf_01_128:"
,(
int16_t
*
)
&
after_mf_01_128
[
0
]);
print_shorts
(
"after_mf_10_128:"
,(
int16_t
*
)
&
after_mf_10_128
[
0
]);
//
print_shorts("after_mf_10_128:",(int16_t*)&after_mf_10_128[0]);
print_shorts
(
"after_mf_11_128:"
,(
int16_t
*
)
&
after_mf_11_128
[
0
]);
print_ints
(
"ad_re_128:"
,(
int32_t
*
)
&
ad_re_128
);
print_ints
(
"bc_re_128:"
,(
int32_t
*
)
&
bc_re_128
);
...
...
@@ -640,7 +641,7 @@ void det_HhH(int32_t *after_mf_00,
det_fin_128
+=
1
;
after_mf_00_128
+=
1
;
after_mf_01_128
+=
1
;
after_mf_10_128
+=
1
;
//
after_mf_10_128+=1;
after_mf_11_128
+=
1
;
}
_mm_empty
();
...
...
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