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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
5cd5f725
Commit
5cd5f725
authored
Oct 29, 2024
by
Laurent THOMAS
Committed by
Robert Schmidt
Oct 30, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
case DFT12 processing with specific data organization: remove intermediate pointer
parent
4cf2719b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
26 deletions
+24
-26
openair1/PHY/TOOLS/oai_dfts.c
openair1/PHY/TOOLS/oai_dfts.c
+24
-26
No files found.
openair1/PHY/TOOLS/oai_dfts.c
View file @
5cd5f725
...
...
@@ -4561,43 +4561,41 @@ __attribute__((always_inline)) static inline void dft12f_simd256(simd256_q15_t *
simd256_q15_t
tmp_dft12
[
12
];
simd256_q15_t
*
tmp_dft12_ptr
=
&
tmp_dft12
[
0
];
// msg("dft12\n");
bfly4_tw1_256
(
x0
,
x3
,
x6
,
x9
,
tmp_dft12
_ptr
,
tmp_dft12
_ptr
+
3
,
tmp_dft12
_ptr
+
6
,
tmp_dft12
_ptr
+
9
);
tmp_dft12
,
tmp_dft12
+
3
,
tmp_dft12
+
6
,
tmp_dft12
+
9
);
bfly4_tw1_256
(
x1
,
x4
,
x7
,
x10
,
tmp_dft12
_ptr
+
1
,
tmp_dft12
_ptr
+
4
,
tmp_dft12
_ptr
+
7
,
tmp_dft12
_ptr
+
10
);
tmp_dft12
+
1
,
tmp_dft12
+
4
,
tmp_dft12
+
7
,
tmp_dft12
+
10
);
bfly4_tw1_256
(
x2
,
x5
,
x8
,
x11
,
tmp_dft12
_ptr
+
2
,
tmp_dft12
_ptr
+
5
,
tmp_dft12
_ptr
+
8
,
tmp_dft12
_ptr
+
11
);
tmp_dft12
+
2
,
tmp_dft12
+
5
,
tmp_dft12
+
8
,
tmp_dft12
+
11
);
// k2=0;
bfly3_tw1_256
(
tmp_dft12
_ptr
,
tmp_dft12
_ptr
+
1
,
tmp_dft12
_ptr
+
2
,
bfly3_tw1_256
(
tmp_dft12
,
tmp_dft12
+
1
,
tmp_dft12
+
2
,
y0
,
y4
,
y8
);
...
...
@@ -4605,9 +4603,9 @@ __attribute__((always_inline)) static inline void dft12f_simd256(simd256_q15_t *
// k2=1;
bfly3_256
(
tmp_dft12
_ptr
+
3
,
tmp_dft12
_ptr
+
4
,
tmp_dft12
_ptr
+
5
,
bfly3_256
(
tmp_dft12
+
3
,
tmp_dft12
+
4
,
tmp_dft12
+
5
,
y1
,
y5
,
y9
,
...
...
@@ -4617,9 +4615,9 @@ __attribute__((always_inline)) static inline void dft12f_simd256(simd256_q15_t *
// k2=2;
bfly3_256
(
tmp_dft12
_ptr
+
6
,
tmp_dft12
_ptr
+
7
,
tmp_dft12
_ptr
+
8
,
bfly3_256
(
tmp_dft12
+
6
,
tmp_dft12
+
7
,
tmp_dft12
+
8
,
y2
,
y6
,
y10
,
...
...
@@ -4627,9 +4625,9 @@ __attribute__((always_inline)) static inline void dft12f_simd256(simd256_q15_t *
W4_12_256
);
// k2=3;
bfly3_256
(
tmp_dft12
_ptr
+
9
,
tmp_dft12
_ptr
+
10
,
tmp_dft12
_ptr
+
11
,
bfly3_256
(
tmp_dft12
+
9
,
tmp_dft12
+
10
,
tmp_dft12
+
11
,
y3
,
y7
,
y11
,
...
...
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