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
lizhongxiao
OpenXG-RAN
Commits
aca2d708
Commit
aca2d708
authored
Oct 10, 2023
by
mir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid -Werror
parent
951eaba6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
openair1/PHY/MODULATION/nr_modulation.c
openair1/PHY/MODULATION/nr_modulation.c
+4
-0
No files found.
openair1/PHY/MODULATION/nr_modulation.c
View file @
aca2d708
...
...
@@ -141,6 +141,7 @@ __m256i unpack12to16(const uint8_t *addr)
// nibbles in each pair of epi16: [ 0 f e d | 0 c b a ]
}
/*
// consumes 24 bytes starting at addr.
static
__m256i unpack6to8(const uint8_t *addr)
...
...
@@ -154,6 +155,7 @@ __m256i unpack6to8(const uint8_t *addr)
__m256i const m1 = _mm256_set1_epi16(0xFF00);
return _mm256_blendv_epi8(lo, hi, m1); // [00cc cccc | 00aa aaaa]
}
*/
#endif
...
...
@@ -167,7 +169,9 @@ void nr_modulation(uint32_t *in,
int32_t
*
nr_mod_table32
;
int32_t
*
out32
=
(
int32_t
*
)
out
;
uint8_t
*
in_bytes
=
(
uint8_t
*
)
in
;
#ifndef __SSE2__
uint64_t
*
in64
=
(
uint64_t
*
)
in
;
#endif
int64_t
*
out64
=
(
int64_t
*
)
out
;
uint32_t
i
;
...
...
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