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
4a2f044a
Commit
4a2f044a
authored
Nov 26, 2020
by
Antoine Kaufmann
Browse files
experiments: add draft mtcp scripts
parent
8719a228
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
196 additions
and
0 deletions
+196
-0
experiments/pyexps/mtcp_cores.py
experiments/pyexps/mtcp_cores.py
+65
-0
experiments/pyexps/mtcp_mpcs.py
experiments/pyexps/mtcp_mpcs.py
+66
-0
experiments/pyexps/mtcp_msgsz.py
experiments/pyexps/mtcp_msgsz.py
+65
-0
No files found.
experiments/pyexps/mtcp_cores.py
0 → 100644
View file @
4a2f044a
import
modes.experiments
as
exp
import
modes.simulators
as
sim
import
modes.nodeconfig
as
node
server_cores_configs
=
[
1
,
2
,
4
,
8
]
stacks
=
[
'linux'
,
'mtcp'
]
client_cores
=
1
num_clients
=
1
connections
=
128
msg_size
=
64
experiments
=
[]
for
server_cores
in
server_cores_configs
:
for
stack
in
stacks
:
e
=
exp
.
Experiment
(
'qemu-ib-switch-mtcp_cores-%s-%d'
%
(
stack
,
server_cores
))
e
.
timeout
=
5
*
60
# add meta data for output file
e
.
metadata
[
'msg_size'
]
=
msg_size
e
.
metadata
[
'stack'
]
=
stack
net
=
sim
.
SwitchNet
()
e
.
add_network
(
net
)
if
stack
==
'tas'
:
n
=
node
.
TASNode
elif
stack
==
'mtcp'
:
n
=
node
.
MtcpNode
else
:
n
=
node
.
I40eLinuxNode
servers
=
sim
.
create_basic_hosts
(
e
,
1
,
'server'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCServer
)
clients
=
sim
.
create_basic_hosts
(
e
,
num_clients
,
'client'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCClient
,
ip_start
=
2
)
for
h
in
servers
:
h
.
node_config
.
cores
=
server_cores
h
.
node_config
.
app
.
threads
=
server_cores
h
.
node_config
.
app
.
max_flows
=
connections
*
4
h
.
sleep
=
5
for
c
in
clients
:
c
.
wait
=
True
c
.
node_config
.
cores
=
client_cores
c
.
node_config
.
app
.
threads
=
client_cores
c
.
node_config
.
app
.
server_ip
=
servers
[
0
].
node_config
.
ip
c
.
node_config
.
app
.
max_msgs_conn
=
1
c
.
node_config
.
app
.
max_flows
=
\
int
(
connections
/
num_clients
/
client_cores
)
for
h
in
servers
+
clients
:
h
.
node_config
.
app
.
max_bytes
=
msg_size
if
stack
==
'linux'
:
h
.
node_config
.
disk_image
=
'tas'
elif
stack
==
'tas'
:
c
.
node_config
.
cores
+=
2
c
.
node_config
.
fp_cores
=
1
experiments
.
append
(
e
)
experiments/pyexps/mtcp_mpcs.py
0 → 100644
View file @
4a2f044a
import
modes.experiments
as
exp
import
modes.simulators
as
sim
import
modes.nodeconfig
as
node
mpcs
=
[
1
,
8
,
128
]
stacks
=
[
'linux'
,
'mtcp'
]
server_cores
=
8
client_cores
=
4
num_clients
=
4
connections
=
512
msg_size
=
64
experiments
=
[]
for
mpc
in
mpcs
:
for
stack
in
stacks
:
e
=
exp
.
Experiment
(
'qemu-ib-switch-mtcp_mpc-%s-%d'
%
(
stack
,
mpc
))
e
.
timeout
=
5
*
60
# add meta data for output file
e
.
metadata
[
'mpc'
]
=
mpc
e
.
metadata
[
'stack'
]
=
stack
net
=
sim
.
SwitchNet
()
e
.
add_network
(
net
)
if
stack
==
'tas'
:
n
=
node
.
TASNode
elif
stack
==
'mtcp'
:
n
=
node
.
MtcpNode
else
:
n
=
node
.
I40eLinuxNode
servers
=
sim
.
create_basic_hosts
(
e
,
1
,
'server'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCServer
)
clients
=
sim
.
create_basic_hosts
(
e
,
num_clients
,
'client'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCClient
,
ip_start
=
2
)
for
h
in
servers
:
h
.
node_config
.
cores
=
server_cores
h
.
node_config
.
app
.
threads
=
server_cores
h
.
node_config
.
app
.
max_flows
=
connections
*
4
h
.
sleep
=
5
for
c
in
clients
:
c
.
wait
=
True
c
.
node_config
.
cores
=
client_cores
c
.
node_config
.
app
.
threads
=
client_cores
c
.
node_config
.
app
.
server_ip
=
servers
[
0
].
node_config
.
ip
c
.
node_config
.
app
.
max_msgs_conn
=
mpc
c
.
node_config
.
app
.
max_flows
=
\
int
(
connections
/
num_clients
/
client_cores
)
for
h
in
servers
+
clients
:
h
.
node_config
.
app
.
max_bytes
=
msg_size
if
stack
==
'linux'
:
h
.
node_config
.
disk_image
=
'tas'
elif
stack
==
'tas'
:
c
.
node_config
.
cores
+=
2
c
.
node_config
.
fp_cores
=
1
experiments
.
append
(
e
)
experiments/pyexps/mtcp_msgsz.py
0 → 100644
View file @
4a2f044a
import
modes.experiments
as
exp
import
modes.simulators
as
sim
import
modes.nodeconfig
as
node
msg_sizes
=
[
64
,
1024
,
8092
]
stacks
=
[
'linux'
,
'mtcp'
]
server_cores
=
8
client_cores
=
4
num_clients
=
4
connections
=
512
experiments
=
[]
for
msg_size
in
msg_sizes
:
for
stack
in
stacks
:
e
=
exp
.
Experiment
(
'qemu-ib-switch-mtcp_msgsz-%s-%d'
%
(
stack
,
msg_size
))
e
.
timeout
=
5
*
60
# add meta data for output file
e
.
metadata
[
'msg_size'
]
=
msg_size
e
.
metadata
[
'stack'
]
=
stack
net
=
sim
.
SwitchNet
()
e
.
add_network
(
net
)
if
stack
==
'tas'
:
n
=
node
.
TASNode
elif
stack
==
'mtcp'
:
n
=
node
.
MtcpNode
else
:
n
=
node
.
I40eLinuxNode
servers
=
sim
.
create_basic_hosts
(
e
,
1
,
'server'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCServer
)
clients
=
sim
.
create_basic_hosts
(
e
,
num_clients
,
'client'
,
net
,
sim
.
I40eNIC
,
sim
.
QemuHost
,
n
,
node
.
RPCClient
,
ip_start
=
2
)
for
h
in
servers
:
h
.
node_config
.
cores
=
server_cores
h
.
node_config
.
app
.
threads
=
server_cores
h
.
node_config
.
app
.
max_flows
=
connections
*
4
h
.
sleep
=
5
for
c
in
clients
:
c
.
wait
=
True
c
.
node_config
.
cores
=
client_cores
c
.
node_config
.
app
.
threads
=
client_cores
c
.
node_config
.
app
.
server_ip
=
servers
[
0
].
node_config
.
ip
c
.
node_config
.
app
.
max_msgs_conn
=
1
c
.
node_config
.
app
.
max_flows
=
\
int
(
connections
/
num_clients
/
client_cores
)
for
h
in
servers
+
clients
:
h
.
node_config
.
app
.
max_bytes
=
msg_size
if
stack
==
'linux'
:
h
.
node_config
.
disk_image
=
'tas'
elif
stack
==
'tas'
:
c
.
node_config
.
cores
+=
2
c
.
node_config
.
fp_cores
=
1
experiments
.
append
(
e
)
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