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
zzha zzha
OpenXG-RAN
Commits
282a60fd
Commit
282a60fd
authored
Oct 17, 2019
by
Laurent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reset measurements after print
parent
80b89510
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
8 deletions
+22
-8
executables/main-fs6.c
executables/main-fs6.c
+22
-8
No files found.
executables/main-fs6.c
View file @
282a60fd
...
...
@@ -31,6 +31,20 @@ int sum(uint8_t *b, int s) {
return
sum
;
}
static
inline
void
updateTimesReset
(
uint64_t
start
,
Meas
*
M
,
int
period
,
char
*
txt
)
{
if
(
start
!=
0
)
{
uint64_t
end
=
rdtsc
();
long
long
diff
=
(
end
-
start
)
/
(
cpuf
*
1000
);
M
->
maxArray
[
0
]
=
diff
;
M
->
sum
+=
diff
;
M
->
iterations
++
;
qsort
(
M
->
maxArray
,
11
,
sizeof
(
uint64_t
),
cmpint
);
printMeas
(
txt
,
M
,
period
);
if
(
M
->
iterations
%
period
==
0
)
bzero
(
M
,
sizeof
(
*
M
));
}
}
#define ceil16_bytes(a) ((((a+15)/16)*16)/8)
static
void
fs6Dlunpack
(
void
*
out
,
void
*
in
,
int
szUnpacked
)
{
static
uint64_t
*
lut
=
NULL
;
...
...
@@ -1472,13 +1486,13 @@ void *cu_fs6(void *arg) {
while
(
1
)
{
timeStamp
+=
ru
->
frame_parms
.
samples_per_tti
;
updateTimes
(
begingWait
,
&
fullLoop
,
1000
,
"CU for full SubFrame (must be less 1ms)"
);
updateTimes
Reset
(
begingWait
,
&
fullLoop
,
1000
,
"CU for full SubFrame (must be less 1ms)"
);
pickStaticTime
(
begingWait
);
updateTimes
(
begingWait
,
&
waitDUAndProcessingUL
,
1000
,
"CU Time in wait Rx + Ul processing"
);
updateTimes
Reset
(
begingWait
,
&
waitDUAndProcessingUL
,
1000
,
"CU Time in wait Rx + Ul processing"
);
UL_cu_fs6
(
ru
,
&
timeStamp
);
pickStaticTime
(
begingWait2
);
DL_cu_fs6
(
ru
);
updateTimes
(
begingWait2
,
&
makeSendDL
,
1000
,
"CU Time in DL build+send"
);
updateTimes
Reset
(
begingWait2
,
&
makeSendDL
,
1000
,
"CU Time in DL build+send"
);
}
...
...
@@ -1509,20 +1523,20 @@ void *du_fs6(void *arg) {
}
else
LOG_I
(
PHY
,
"RU %d no rf device
\n
"
,
ru
->
idx
);
initStaticTime
(
begingWait
);
initStaticTime
(
begingWait2
);
initRefTimes
(
waitRxAndProcessingUL
);
initStaticTime
(
begingWait2
);
initRefTimes
(
waitRxAndProcessingUL
);
initRefTimes
(
makeSendDL
);
initRefTimes
(
fullLoop
);
while
(
1
)
{
L1_proc_t
*
proc
=
&
ru
->
eNB_list
[
0
]
->
proc
;
updateTimes
(
begingWait
,
&
fullLoop
,
1000
,
"DU for full SubFrame (must be less 1ms)"
);
updateTimes
Reset
(
begingWait
,
&
fullLoop
,
1000
,
"DU for full SubFrame (must be less 1ms)"
);
pickStaticTime
(
begingWait
);
UL_du_fs6
(
ru
,
proc
->
frame_rx
,
proc
->
subframe_rx
);
updateTimes
(
begingWait
,
&
waitRxAndProcessingUL
,
1000
,
"DU Time in wait Rx + Ul processing"
);
updateTimes
Reset
(
begingWait
,
&
waitRxAndProcessingUL
,
1000
,
"DU Time in wait Rx + Ul processing"
);
pickStaticTime
(
begingWait2
);
DL_du_fs6
(
ru
);
updateTimes
(
begingWait2
,
&
makeSendDL
,
1000
,
"DU Time in build and send Tx"
);
updateTimes
Reset
(
begingWait2
,
&
makeSendDL
,
1000
,
"DU Time in build and send Tx"
);
}
return
NULL
;
...
...
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