Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
67fdbc06
Commit
67fdbc06
authored
Jun 01, 2022
by
Jialin Li
Browse files
Merge branch 'main' of github.com:simbricks/simbricks into main
parents
bc454c29
b19848d3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
383 additions
and
29 deletions
+383
-29
docker/Dockerfile.min
docker/Dockerfile.min
+1
-1
experiments/pyexps/ae/f7_scale.py
experiments/pyexps/ae/f7_scale.py
+136
-0
experiments/pyexps/ae/ns3-dctcp.sh
experiments/pyexps/ae/ns3-dctcp.sh
+108
-0
experiments/pyexps/ae/t1_combination.py
experiments/pyexps/ae/t1_combination.py
+109
-0
experiments/pyexps/ns3-dctcp.sh
experiments/pyexps/ns3-dctcp.sh
+29
-28
No files found.
docker/Dockerfile.min
View file @
67fdbc06
...
@@ -10,6 +10,6 @@ RUN groupadd --gid $USER_GID $USERNAME \
...
@@ -10,6 +10,6 @@ RUN groupadd --gid $USER_GID $USERNAME \
&& apt-get update \
&& apt-get update \
&& apt-get install -y sudo \
&& apt-get install -y sudo \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME
\
&& chmod 0440 /etc/sudoers.d/$USERNAME
COPY --chown=${USERNAME}:${USERNAME} --from=builder /simbricks /simbricks
COPY --chown=${USERNAME}:${USERNAME} --from=builder /simbricks /simbricks
WORKDIR /simbricks
WORKDIR /simbricks
experiments/pyexps/ae/f7_scale.py
0 → 100644
View file @
67fdbc06
# Copyright 2021 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
########################################################################
# This script is for reproducing [Figure 7] scalability result.
# It generates experiments that simulating varying number of hosts.
#
# We used following combination of simulators.
# HOST: Gem5 timing CPU
# NIC: Intel i40e behavioral model
# NET: Switch behavioral model
#
# In each simulation, one server host and several clients are connected by a switch
# [HOST_0] - [NIC_0] ---- [SWITCH] ---- [NIC_1] - [HOST_1]
# server | .....| client_0
# Client_1 Clinet_n
#
# The server host runs iperf UDP server and client host runs UDP test
# The total aggregated bandwidth sent to the server are fixed to 1000 Mbps
#
# The command to run all the experiments is:
# $: python3 run.py pyexps/ae/f7_scale.py --filter host-gt-ib-sw-* --verbose
########################################################################
import
simbricks.experiments
as
exp
import
simbricks.simulators
as
sim
import
simbricks.nodeconfig
as
node
from
simbricks.simulator_utils
import
create_basic_hosts
host_types
=
[
'gt'
]
nic_types
=
[
'ib'
]
net_types
=
[
'sw'
]
app
=
[
'Host'
]
total_rate
=
1000
# Mbps
num_client_max
=
8
num_client_step
=
2
num_client_types
=
[
1
,
4
,
9
,
14
,
20
]
experiments
=
[]
for
n_client
in
num_client_types
:
per_client_rate
=
int
(
total_rate
/
n_client
)
rate
=
f
'
{
per_client_rate
}
m'
for
host_type
in
host_types
:
for
nic_type
in
nic_types
:
for
net_type
in
net_types
:
e
=
exp
.
Experiment
(
'host-'
+
host_type
+
'-'
+
nic_type
+
'-'
+
net_type
+
'-'
+
f
'
{
total_rate
}
m'
+
f
'-
{
n_client
}
'
)
# network
if
net_type
==
'sw'
:
net
=
sim
.
SwitchNet
()
elif
net_type
==
'br'
:
net
=
sim
.
NS3BridgeNet
()
else
:
raise
NameError
(
net_type
)
e
.
add_network
(
net
)
# host
if
host_type
==
'qemu'
:
host_class
=
sim
.
QemuHost
elif
host_type
==
'qt'
:
def
qemu_timing
():
h
=
sim
.
QemuHost
()
h
.
sync
=
True
return
h
host_class
=
qemu_timing
elif
host_type
==
'gt'
:
host_class
=
sim
.
Gem5Host
e
.
checkpoint
=
True
else
:
raise
NameError
(
host_type
)
# nic
if
nic_type
==
'ib'
:
nic_class
=
sim
.
I40eNIC
nc_class
=
node
.
I40eLinuxNode
elif
nic_type
==
'cb'
:
nic_class
=
sim
.
CorundumBMNIC
nc_class
=
node
.
CorundumLinuxNode
elif
nic_type
==
'cv'
:
nic_class
=
sim
.
CorundumVerilatorNIC
nc_class
=
node
.
CorundumLinuxNode
else
:
raise
NameError
(
nic_type
)
# create servers and clients
servers
=
create_basic_hosts
(
e
,
1
,
'server'
,
net
,
nic_class
,
host_class
,
nc_class
,
node
.
IperfUDPServer
)
clients
=
create_basic_hosts
(
e
,
n_client
,
'client'
,
net
,
nic_class
,
host_class
,
nc_class
,
node
.
IperfUDPClient
,
ip_start
=
2
)
clients
[
n_client
-
1
].
node_config
.
app
.
is_last
=
True
clients
[
n_client
-
1
].
wait
=
True
for
c
in
clients
:
c
.
node_config
.
app
.
server_ip
=
servers
[
0
].
node_config
.
ip
c
.
node_config
.
app
.
rate
=
rate
c
.
cpu_freq
=
'3GHz'
#c.wait = True
servers
[
0
].
cpu_freq
=
'3GHz'
print
(
e
.
name
)
# add to experiments
experiments
.
append
(
e
)
experiments/pyexps/ae/ns3-dctcp.sh
0 → 100755
View file @
67fdbc06
#!/bin/bash
# Copyright 2021 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
###########################################################################
# This script runs dctcp experiment in standalone ns-3
#
##### build dctcp-modes.cc example in ns-3
##### cp examples/tcp/dctcp-modes.cc scratch/dctcp-modes.cc
##### ./waf
##### ./ns3-dctcp.sh [num_core]
EHSIM_BASE
=
"
$(
readlink
-f
$(
dirname
${
BASH_SOURCE
[0]
}
)
/../..
)
"
NS3_BASE
=
"
$EHSIM_BASE
/sims/external/ns-3"
OUTDIR_BASE
=
"
$EHSIM_BASE
/experiments/pyexps"
cd
$NS3_BASE
k_start
=
0
k_end
=
199680
#k_step=2080
#k_end=199680
k_step
=
8320
#mtus="1500 4000 9000"
mtus
=
"4000"
# link latency corresponds to RTT latency 1us 10us 100us 200us
#latencies="167ns 1670ns 16us 33us"
latencies
=
"16us"
cores
=
$1
echo
$cores
proc
=
0
pids
=
""
cleanup
()
{
echo
Cleaning up
for
p
in
$pids
;
do
kill
$p
&>/dev/null
done
sleep
1
for
p
in
$pids
;
do
kill
-KILL
$p
&>/dev/null
done
}
sighandler
()
{
echo
"Caught Interrupt, aborting...."
cleanup
exit
1
}
trap
"sighandler"
SIGINT
#for k in $(seq $k_start $k_step $k_end)
for
lat
in
$latencies
do
for
m
in
$mtus
do
#echo $k
#for m in 1500 4000 9000 # MTU size
for
k
in
$(
seq
$k_start
$k_step
$k_end
)
do
echo
"latency:
$lat
MtU:
$m
K:
$k
"
./cosim-dctcp-run.sh
$k
$m
$lat
&
pid
=
$!
pids
=
"
$pids
$pid
"
proc
=
$((
$proc
+
1
))
if
[
$proc
-eq
$cores
]
;
then
for
p
in
$pids
;
do
wait
$p
done
proc
=
0
pids
=
""
fi
done
done
done
for
p
in
$pids
;
do
wait
$p
done
experiments/pyexps/ae/t1_combination.py
0 → 100644
View file @
67fdbc06
# Copyright 2021 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
########################################################################
# This script is for reproducing [Table 1] in the paper.
# It generates experiments for all combinations of simulation.
#
# Host type has qemu-kvm(qemu in short), gem5-timing-mode(gt), qemu-timing-mode(qt)
# Nic type has Intel_i40e behavioral model(ib), corundum behavioral model(cb), corundum verilator(cv)
# Net type has Switch behavioral model(sw), ns-3(ns3)
#
# In each simulation, two hosts are connected by a switch
# [HOST_0] - [NIC_0] ---- [SWITCH] ---- [NIC_1] - [HOST_1]
# server client
#
# The server host runs netperf server and client host runs TCP_RR and
# TCP_STREAM test
#
# The command to run all the experiments is:
# $: python3 run.py pyexps/ae/t1_combination.py --filter nf-* --verbose
########################################################################
import
simbricks.experiments
as
exp
import
simbricks.simulators
as
sim
import
simbricks.nodeconfig
as
node
from
simbricks.simulator_utils
import
create_basic_hosts
host_types
=
[
'qemu'
,
'gt'
,
'qt'
]
nic_types
=
[
'ib'
,
'cb'
,
'cv'
]
net_types
=
[
'sw'
,
'ns3'
]
experiments
=
[]
# Create multiple experiments with different simulator permutations, which can
# be filtered later.
for
host_type
in
host_types
:
for
nic_type
in
nic_types
:
for
net_type
in
net_types
:
e
=
exp
.
Experiment
(
'nf-'
+
host_type
+
'-'
+
net_type
+
'-'
+
nic_type
)
# network
if
net_type
==
'sw'
:
net
=
sim
.
SwitchNet
()
elif
net_type
==
'ns3'
:
net
=
sim
.
NS3BridgeNet
()
else
:
raise
NameError
(
net_type
)
e
.
add_network
(
net
)
# host
if
host_type
==
'qemu'
:
host_class
=
sim
.
QemuHost
elif
host_type
==
'qt'
:
def
qemu_timing
():
h
=
sim
.
QemuHost
()
h
.
sync
=
True
return
h
host_class
=
qemu_timing
elif
host_type
==
'gt'
:
host_class
=
sim
.
Gem5Host
e
.
checkpoint
=
True
else
:
raise
NameError
(
host_type
)
# nic
if
nic_type
==
'ib'
:
nic_class
=
sim
.
I40eNIC
nc_class
=
node
.
I40eLinuxNode
elif
nic_type
==
'cb'
:
nic_class
=
sim
.
CorundumBMNIC
nc_class
=
node
.
CorundumLinuxNode
elif
nic_type
==
'cv'
:
nic_class
=
sim
.
CorundumVerilatorNIC
nc_class
=
node
.
CorundumLinuxNode
else
:
raise
NameError
(
nic_type
)
# create servers and clients
servers
=
create_basic_hosts
(
e
,
1
,
'server'
,
net
,
nic_class
,
host_class
,
nc_class
,
node
.
NetperfServer
)
clients
=
create_basic_hosts
(
e
,
1
,
'client'
,
net
,
nic_class
,
host_class
,
nc_class
,
node
.
NetperfClient
,
ip_start
=
2
)
for
c
in
clients
:
c
.
wait
=
True
c
.
node_config
.
app
.
server_ip
=
servers
[
0
].
node_config
.
ip
# add to experiments
experiments
.
append
(
e
)
experiments/pyexps/ns3-dctcp.sh
100644 → 100755
View file @
67fdbc06
...
@@ -30,20 +30,20 @@
...
@@ -30,20 +30,20 @@
EHSIM_BASE
=
"
$(
readlink
-f
$(
dirname
${
BASH_SOURCE
[0]
}
)
/../..
)
"
EHSIM_BASE
=
"
$(
readlink
-f
$(
dirname
${
BASH_SOURCE
[0]
}
)
/../..
)
"
NS3_BASE
=
"
$EHSIM_BASE
/ns-3"
NS3_BASE
=
"
$EHSIM_BASE
/
sims/external/
ns-3"
OUTDIR_BASE
=
"
$EHSIM_BASE
/experiments/pyexps"
OUTDIR_BASE
=
"
$EHSIM_BASE
/experiments/pyexps"
cd
$NS3_BASE
cd
$NS3_BASE
k_start
=
0
k_start
=
0
k_end
=
199680
k_end
=
199680
k_step
=
2080
#
k_step=2080
#k_end=199680
#k_end=199680
#
k_step=8320
k_step
=
8320
#mtus="1500 4000 9000"
#mtus="1500 4000 9000"
mtus
=
"
15
00"
mtus
=
"
40
00"
# link latency corresponds to RTT latency 1us 10us
1
00us
# link latency corresponds to RTT latency 1us 10us
20us 100us 2
00us
#latencies="167ns 1670ns 16us 33us"
#latencies="167ns 1670ns
3300ns
16us 33us"
latencies
=
"
33
us"
latencies
=
"
16
us"
cores
=
$1
cores
=
$1
echo
$cores
echo
$cores
...
@@ -51,6 +51,28 @@ echo $cores
...
@@ -51,6 +51,28 @@ echo $cores
proc
=
0
proc
=
0
pids
=
""
pids
=
""
cleanup
()
{
echo
Cleaning up
for
p
in
$pids
;
do
kill
$p
&>/dev/null
done
sleep
1
for
p
in
$pids
;
do
kill
-KILL
$p
&>/dev/null
done
}
sighandler
()
{
echo
"Caught Interrupt, aborting...."
cleanup
exit
1
}
trap
"sighandler"
SIGINT
#for k in $(seq $k_start $k_step $k_end)
#for k in $(seq $k_start $k_step $k_end)
for
lat
in
$latencies
for
lat
in
$latencies
do
do
...
@@ -82,24 +104,3 @@ for p in $pids; do
...
@@ -82,24 +104,3 @@ for p in $pids; do
wait
$p
wait
$p
done
done
cleanup
()
{
echo
Cleaning up
for
p
in
$pids
;
do
kill
$p
&>/dev/null
done
sleep
1
for
p
in
$pids
;
do
kill
-KILL
$p
&>/dev/null
done
}
sighandler
()
{
echo
"Caught Interrupt, aborting...."
cleanup
exit
1
}
trap
"sighandler"
SIGINT
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