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
lizhongxiao
OpenXG-RAN
Commits
eac5e31e
Commit
eac5e31e
authored
Feb 14, 2018
by
Florian Kaltenberger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding test script for dlsim
parent
69107145
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
cmake_targets/lte-simulators/build/dlsim_all
cmake_targets/lte-simulators/build/dlsim_all
+12
-0
No files found.
cmake_targets/lte-simulators/build/dlsim_all
0 → 100755
View file @
eac5e31e
#!/bin/bash
for
m
in
`
seq
0 28
`
;
do
for
b
in
1 3 7 15 31 63 127 255 511 1023 2047 4095 8191 16383 32767 65535 131071 262143 524287 1048575 2097151 4194303 8388607 16777215 33554431
;
do
./dlsim
-x1
-y1
-z1
-B
100
-r
$b
-m
$m
-c
1
-n100
-R1
-a
-s30
-w1
-O70
>
/dev/null
rc
=
$?
;
if
[
$rc
==
0
]
;
then
echo
"MCS
$m
PRB
$b
OK"
;
else
echo
"MCS
$m
PRB
$b
NOK"
;
fi
done
done
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