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
wangjie
OpenXG-RAN
Commits
00ecef77
Commit
00ecef77
authored
Aug 25, 2020
by
frtabu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add code to debug pucch dft
parent
4d19f6ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
82 additions
and
31 deletions
+82
-31
cmake_targets/CMakeLists.txt
cmake_targets/CMakeLists.txt
+1
-1
openair1/PHY/TOOLS/oai_kissdfts.c
openair1/PHY/TOOLS/oai_kissdfts.c
+76
-25
openair1/PHY/TOOLS/tools_defs.h
openair1/PHY/TOOLS/tools_defs.h
+5
-5
No files found.
cmake_targets/CMakeLists.txt
View file @
00ecef77
...
...
@@ -1420,7 +1420,7 @@ set(KISSFFT_DIR ${OPENAIR_DIR}/kiss_fft130)
add_library
(
dfts_fpkiss MODULE
${
OPENAIR1_DIR
}
/PHY/TOOLS/oai_kissdfts.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/oai_dfts_tmp.c
${
KISSFFT_DIR
}
/kiss_fft.c
)
target_compile_definitions
(
dfts_fpkiss PUBLIC -DFIXED_POINT=16
)
target_compile_options
(
dfts_fpkiss PUBLIC -O3 -mtune=native -ffast-math -fomit-frame-pointer -dA -fverbose-asm
)
add_library
(
dfts_flkiss MODULE
${
OPENAIR1_DIR
}
/PHY/TOOLS/oai_kissdfts.c
${
KISSFFT_DIR
}
/kiss_fft.c
)
add_library
(
dfts_flkiss MODULE
${
OPENAIR1_DIR
}
/PHY/TOOLS/oai_kissdfts.c
${
OPENAIR1_DIR
}
/PHY/TOOLS/oai_dfts_tmp.c
${
KISSFFT_DIR
}
/kiss_fft.c
)
target_compile_definitions
(
dfts_fpkiss PUBLIC
)
target_compile_options
(
dfts_fpkiss PUBLIC -O3 -mtune=native -ffast-math -fomit-frame-pointer -dA -fverbose-asm
)
...
...
openair1/PHY/TOOLS/oai_kissdfts.c
View file @
00ecef77
...
...
@@ -51,7 +51,7 @@ static int fftsizes[] = DFT_SIZES;
static
int
ifftsizes
[]
=
IDFT_SIZES
;
/*----------------------------------------------------------------*/
/* dft library entry points: */
static
int16_t
*
tmpbuff
;
int
dfts_autoinit
(
void
)
{
for
(
int
i
=
0
;
i
<
DFT_SIZE_IDXTABLESIZE
;
i
++
)
{
...
...
@@ -61,6 +61,7 @@ int dfts_autoinit(void)
ifftcfg
[
i
]
=
kiss_fft_alloc
(
ifftsizes
[
i
],
1
,
NULL
,
NULL
);
}
#ifdef FIXED_POINT
tmpbuff
=
malloc
(
98304
*
2
*
sizeof
(
int16_t
));
olddfts_autoinit
();
#endif
return
0
;
...
...
@@ -104,6 +105,14 @@ void rescale_down_int16buff(int size,int16_t *input, int factor){
}
}
void
rescale_dft_int16buff
(
int
size
,
int16_t
*
input
,
int
factor
){
for
(
int
i
=
0
;
i
<
(
size
*
2
);
i
=
i
+
1
){
int32_t
tmpi
=
input
[
i
]
*
factor
;
input
[
i
]
=
tmpi
/
4096
;
}
}
void
print_minmax
(
int
size
,
int16_t
*
buf
,
int
scale_flag
)
{
int16_t
vmin
=
0
,
vmax
=
0
;
for
(
int
i
=
0
;
i
<
(
size
*
2
);
i
=
i
+
1
){
...
...
@@ -113,32 +122,74 @@ void print_minmax(int size,int16_t *buf,int scale_flag) {
if
(
scale_flag
==
0
||
(
vmax
-
vmin
)
>
10
)
printf
(
"%i: %i - %i
\n
"
,
scale_flag
,
vmin
,
vmax
);
}
void
dft
(
uint8_t
sizeidx
,
int16_t
*
input
,
int16_t
*
output
,
unsigned
char
scale_flag
){
#ifndef FIXED_POINT
float
input_float
[
98304
*
2
*
sizeof
(
float
)];
float
output_float
[
98304
*
2
*
sizeof
(
float
)];
convert_shorttofloat
(
fftsizes
[
sizeidx
],
input
,
input_float
,
1
);
kiss_fft
(
fftcfg
[
sizeidx
],(
kiss_fft_cpx
*
)
input_float
,(
kiss_fft_cpx
*
)
output_float
);
if
(
scale_flag
)
convert_floattoshort
(
fftsizes
[
sizeidx
],
output_float
,
output
,
786732
);
else
convert_floattoshort
(
fftsizes
[
sizeidx
],
output_float
,
output
,
98304
);
float
input_float
[
98304
*
2
];
float
output_float
[
98304
*
2
];
switch
(
sizeidx
)
{
case
DFT_128
:
case
DFT_256
:
case
DFT_512
:
case
DFT_1024
:
case
DFT_1536
:
case
DFT_2048
:
case
DFT_3072
:
case
DFT_4096
:
case
DFT_6144
:
case
DFT_8192
:
case
DFT_9216
:
case
DFT_12288
:
case
DFT_18432
:
case
DFT_24576
:
case
DFT_36864
:
case
DFT_49152
:
case
DFT_73728
:
case
DFT_98304
:
convert_shorttofloat
(
fftsizes
[
sizeidx
],
input
,
input_float
,
8192
);
kiss_fft
(
fftcfg
[
sizeidx
],(
kiss_fft_cpx
*
)
input_float
,(
kiss_fft_cpx
*
)
output_float
);
if
(
scale_flag
)
convert_floattoshort
(
fftsizes
[
sizeidx
],
output_float
,
output
,
8192
);
else
convert_floattoshort
(
fftsizes
[
sizeidx
],
output_float
,
output
,
98304
);
break
;
default:
olddft
(
sizeidx
,
input
,
output
,
scale_flag
);
break
;
}
#else
int16_t
tmpbuff
[
98304
*
2
*
sizeof
(
int16_t
)];
int16_t
*
inputptr
;
// if (scale_flag) {
rescale_up_newint16buff
(
fftsizes
[
sizeidx
],
input
,
tmpbuff
,
16
);
inputptr
=
tmpbuff
;
// }
// else
// inputptr=input;
kiss_fft
(
fftcfg
[
sizeidx
],(
kiss_fft_cpx
*
)
inputptr
,(
kiss_fft_cpx
*
)
output
);
if
(
scale_flag
)
rescale_down_int16buff
(
fftsizes
[
sizeidx
],
output
,
64
);
else
rescale_down_int16buff
(
fftsizes
[
sizeidx
],
output
,
16
);
// olddft(sizeidx,input,output,scale_flag);
print_minmax
(
fftsizes
[
sizeidx
],
output
,
scale_flag
);
switch
(
sizeidx
)
{
case
DFT_128
:
case
DFT_256
:
case
DFT_512
:
case
DFT_1024
:
case
DFT_1536
:
case
DFT_2048
:
case
DFT_3072
:
case
DFT_4096
:
case
DFT_6144
:
case
DFT_8192
:
case
DFT_9216
:
case
DFT_12288
:
case
DFT_18432
:
case
DFT_24576
:
case
DFT_36864
:
case
DFT_49152
:
case
DFT_73728
:
case
DFT_98304
:
if
(
scale_flag
)
rescale_up_int16buff
(
fftsizes
[
sizeidx
],
input
,
16
);
//
kiss_fft
(
fftcfg
[
sizeidx
],(
kiss_fft_cpx
*
)
input
,(
kiss_fft_cpx
*
)
output
);
// if (scale_flag)
// rescale_down_int16buff(fftsizes[sizeidx],output,16);
break
;
default:
olddft
(
sizeidx
,
input
,
output
,
scale_flag
);
break
;
}
// print_minmax(fftsizes[sizeidx],output,scale_flag);
#endif
};
...
...
@@ -146,7 +197,7 @@ void idft(uint8_t sizeidx, int16_t *input,int16_t *output,unsigned char scale_fl
#ifndef FIXED_POINT
float
input_float2
[
98304
*
2
];
float
output_float2
[
98304
*
2
];
convert_shorttofloat
(
ifftsizes
[
sizeidx
],
input
,
input_float2
,
8192
);
convert_shorttofloat
(
ifftsizes
[
sizeidx
],
input
,
input_float2
,
4096
);
kiss_fft
(
ifftcfg
[
sizeidx
],(
kiss_fft_cpx
*
)
input_float2
,(
kiss_fft_cpx
*
)
output_float2
);
convert_floattoshort
(
ifftsizes
[
sizeidx
],
output_float2
,
output
,
98304
);
#else
...
...
openair1/PHY/TOOLS/tools_defs.h
View file @
00ecef77
...
...
@@ -293,11 +293,11 @@ typedef enum DFT_size_idx {
}
dft_size_idx_t
;
#define DFT_SIZES {\
12
, 24, 36, 48, 60, 72, 96
,\
108
, 120, 128, 144, 180, 192, 216, 240
,\
256, 288
, 300, 324, 360, 384, 432, 480
,\
512, 540
, 576, 600, 648, 720, 768, 86
4,\
900
, 960, 972, 1024, 1080, 1152, 1200
, 1536,\
12
*4, 24*4, 36*4, 48*4, 60*4, 72*4, 96*4
,\
108
*4, 120*4, 128, 144*4, 180*4, 192*4, 216*4, 240*4
,\
256, 288
*4, 300*4, 324*4, 360*4, 384*4, 432*4, 480*4
,\
512, 540
*4, 576*4, 600*4, 648*4, 720*4, 768*4, 864*
4,\
900
*4, 960*4, 972*4, 1024, 1080*4, 1152*4, 1200*4
, 1536,\
2048, 3072, 4096, 6144, 8192 ,9216, 12288, 18432,\
24576, 36864, 49152,73728, 98304}
...
...
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