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
51af1a19
Commit
51af1a19
authored
Dec 15, 2015
by
lukashov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now BLER goes to 10^(-2) in case of abstraction and 10^-3 in regular mode.
parent
2b415868
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
7 deletions
+22
-7
openair1/SIMULATION/LTE_PHY/dlsim.c
openair1/SIMULATION/LTE_PHY/dlsim.c
+22
-7
No files found.
openair1/SIMULATION/LTE_PHY/dlsim.c
View file @
51af1a19
...
...
@@ -4313,16 +4313,31 @@ n(tikz_fname,"w");
}
else
if
(
test_perf
!=
0
){
printf
(
"[continue] effective rate : %f (%2.1f%%,%f)): increase snr
\n
"
,
rate
*
effective_rate
,
100
*
effective_rate
,
rate
);
}
if
((
rx_type
==
rx_IC_dual_stream
)
||
(
rx_type
==
rx_standard
))
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
&&
((
double
)
errs
[
1
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
)
break
;
if
(
abstx
==
1
)
{
if
((
rx_type
==
rx_IC_dual_stream
)
||
(
rx_type
==
rx_standard
))
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
&&
((
double
)
errs
[
1
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
)
break
;
}
else
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
)
break
;
}
}
else
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-2
)
break
;
else
{
if
((
rx_type
==
rx_IC_dual_stream
)
||
(
rx_type
==
rx_standard
))
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-3
&&
((
double
)
errs
[
1
][
0
]
/
(
round_trials
[
0
]))
<
1e-3
)
break
;
}
else
{
if
(((
double
)
errs
[
0
][
0
]
/
(
round_trials
[
0
]))
<
1e-3
)
break
;
}
}
if
(
n_frames
==
1
)
break
;
...
...
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