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
006421d7
Commit
006421d7
authored
Aug 24, 2022
by
Sagar Parsawar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed oai_dfts buffer size issue for IDFT65536 and IDFT384
parent
96a7c4dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
openair1/PHY/TOOLS/oai_dfts.c
openair1/PHY/TOOLS/oai_dfts.c
+4
-4
No files found.
openair1/PHY/TOOLS/oai_dfts.c
View file @
006421d7
...
...
@@ -7013,7 +7013,7 @@ void idft49152(int16_t *input, int16_t *output,uint8_t scale) {
_m_empty();
}
int16_t
tw65536
[
3
*
2
*
4096
]
__attribute__
((
aligned
(
32
)));
int16_t tw65536[3*2*
16384
] __attribute__((aligned(32)));
#ifndef __AVX2__
void idft65536(int16_t *x,int16_t *y,unsigned char scale)
...
...
@@ -9343,8 +9343,8 @@ void dft768p(int16_t *x,int16_t *y,unsigned char scale_flag) { // 192x 4;
}
static
int16_t
twa384i
[
95
*
2
*
4
];
static
int16_t
twb384i
[
95
*
2
*
4
];
static int16_t twa384i[
256
];
static int16_t twb384i[
256
];
// 128 x 3
void idft384(int16_t *input, int16_t *output, unsigned char scale)
{
...
...
@@ -10826,6 +10826,7 @@ int dfts_autoinit(void)
init_rad2(32768,tw32768);
init_rad4(65536,tw65536);
init_rad3(384,twa384i,twb384i);
init_rad3(768,twa768,twb768);
init_rad3(1536,twa1536,twb1536);
init_rad3(3072,twa3072,twb3072);
...
...
@@ -10856,7 +10857,6 @@ int dfts_autoinit(void)
init_rad3_rep(324,twa324,twb324);
init_rad3_rep(360,twa360,twb360);
init_rad4_rep(384,twa384,twb384,twc384);
init_rad3_rep
(
384
,
twa384i
,
twb384i
);
init_rad4_rep(432,twa432,twb432,twc432);
init_rad4_rep(480,twa480,twb480,twc480);
init_rad3_rep(540,twa540,twb540);
...
...
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