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
d7512bdc
Commit
d7512bdc
authored
Feb 27, 2026
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oaioran: fix compression for arm
read data from start PRB of each section.
parent
c84c858c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
radio/fhi_72/oaioran.c
radio/fhi_72/oaioran.c
+1
-1
No files found.
radio/fhi_72/oaioran.c
View file @
d7512bdc
...
@@ -693,7 +693,7 @@ int xran_fh_tx_send_slot(ru_info_t *ru, int frame, int slot, uint64_t timestamp)
...
@@ -693,7 +693,7 @@ int xran_fh_tx_send_slot(ru_info_t *ru, int frame, int slot, uint64_t timestamp)
xranlib_compress_avx512
(
&
bfp_com_req
,
&
bfp_com_rsp
);
xranlib_compress_avx512
(
&
bfp_com_req
,
&
bfp_com_rsp
);
#elif defined(__arm__) || defined(__aarch64__)
#elif defined(__arm__) || defined(__aarch64__)
armral_bfp_compression
(
p_prbMapElm
->
iqWidth
,
numRB
,
(
int16_t
*
)
local_src
,
(
int8_t
*
)
dst
);
armral_bfp_compression
(
p_prbMapElm
->
iqWidth
,
numRB
,
(
int16_t
*
)
(
local_src
+
startRB
*
N_SC_PER_PRB
)
,
(
int8_t
*
)
dst
);
#else
#else
AssertFatal
(
1
==
0
,
"BFP compression not supported on this architecture"
);
AssertFatal
(
1
==
0
,
"BFP compression not supported on this architecture"
);
#endif
#endif
...
...
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