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
spbro
OpenXG-RAN
Commits
10a10e99
Commit
10a10e99
authored
Mar 18, 2023
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/fix_unaligned_idft' into integration_2023_w11b
parents
15055c26
b3b53506
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+2
-2
openair1/PHY/TOOLS/oai_dfts.c
openair1/PHY/TOOLS/oai_dfts.c
+1
-1
No files found.
openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
View file @
10a10e99
...
...
@@ -120,7 +120,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
nfapi_nr_pusch_pdu_t
*
pusch_pdu
,
int
*
max_ch
)
{
c16_t
pilot
[
3280
]
__attribute__
((
aligned
(
16
)));
c16_t
pilot
[
3280
]
__attribute__
((
aligned
(
32
)));
const
int
chest_freq
=
gNB
->
chest_freq
;
#ifdef DEBUG_CH
...
...
@@ -183,7 +183,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
#endif
c16_t
ul_ls_est
[
symbolSize
];
c16_t
ul_ls_est
[
symbolSize
]
__attribute__
((
aligned
(
32
)))
;
memset
(
ul_ls_est
,
0
,
sizeof
(
c16_t
)
*
symbolSize
);
memset
(
&
gNB
->
measurements
.
delay
[
ul_id
],
0
,
sizeof
(
gNB
->
measurements
.
delay
[
ul_id
]));
...
...
openair1/PHY/TOOLS/oai_dfts.c
View file @
10a10e99
...
...
@@ -9068,7 +9068,7 @@ void idft(uint8_t sizeidx, int16_t *input,int16_t *output,unsigned char scale_fl
int
sz
=
idft_ftab
[
sizeidx
].
size
;
int16_t
tmp
[
sz
*
2
]
__attribute__
((
aligned
(
32
)));
// input and output are not in right type (int16_t instead of c16_t)
memcpy
(
tmp
,
input
,
sizeof
tmp
);
dft_ftab
[
sizeidx
].
func
(
tmp
,
output
,
scale_flag
);
i
dft_ftab
[
sizeidx
].
func
(
tmp
,
output
,
scale_flag
);
}
else
idft_ftab
[
sizeidx
].
func
(
input
,
output
,
scale_flag
);
};
...
...
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