f7_scale.py 5.37 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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
#
32
33
# In each simulation, one server host and several clients are connected by a
# switch
34
35
36
37
38
39
# [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
Jonas Kaufmann's avatar
Jonas Kaufmann committed
40
#
41
42
43
44
# The command to run all the experiments is:
# $: python3 run.py pyexps/ae/f7_scale.py --filter host-gt-ib-sw-* --verbose
########################################################################

45
46
47
48
import simbricks.orchestration.experiments as exp
import simbricks.orchestration.nodeconfig as node
import simbricks.orchestration.simulators as sim
from simbricks.orchestration.simulator_utils import create_basic_hosts
49
50
51
52
53
54

host_types = ['gt']
nic_types = ['ib']
net_types = ['sw']
app = ['Host']

Jonas Kaufmann's avatar
Jonas Kaufmann committed
55
total_rate = 1000  # Mbps
56
57
58
59
60
61
62
63
num_client_max = 8
num_client_step = 2
num_client_types = [1, 4, 9, 14, 20]

experiments = []

for n_client in num_client_types:

Jonas Kaufmann's avatar
Jonas Kaufmann committed
64
    per_client_rate = int(total_rate / n_client)
65
66
67
68
69
70
    rate = f'{per_client_rate}m'

    for host_type in host_types:
        for nic_type in nic_types:
            for net_type in net_types:

Jonas Kaufmann's avatar
Jonas Kaufmann committed
71
72
73
74
                e = exp.Experiment(
                    'host-' + host_type + '-' + nic_type + '-' + net_type +
                    '-' + f'{total_rate}m' + f'-{n_client}'
                )
75
76
77
78
79
80
81
82
83
84
85
                # 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':
86
                    HostClass = sim.QemuHost
87
                elif host_type == 'qt':
Jonas Kaufmann's avatar
Jonas Kaufmann committed
88

89
90
                    def qemu_timing(node_config: node.NodeConfig):
                        h = sim.QemuHost(node_config)
91
92
                        h.sync = True
                        return h
Jonas Kaufmann's avatar
Jonas Kaufmann committed
93

94
                    HostClass = qemu_timing
95
                elif host_type == 'gt':
96
                    HostClass = sim.Gem5Host
97
98
99
100
101
102
                    e.checkpoint = True
                else:
                    raise NameError(host_type)

                # nic
                if nic_type == 'ib':
103
104
                    NicClass = sim.I40eNIC
                    NcClass = node.I40eLinuxNode
105
                elif nic_type == 'cb':
106
107
                    NicClass = sim.CorundumBMNIC
                    NcClass = node.CorundumLinuxNode
108
                elif nic_type == 'cv':
109
110
                    NicClass = sim.CorundumVerilatorNIC
                    NcClass = node.CorundumLinuxNode
111
112
113
114
                else:
                    raise NameError(nic_type)

                # create servers and clients
Jonas Kaufmann's avatar
Jonas Kaufmann committed
115
116
117
118
119
                servers = create_basic_hosts(
                    e,
                    1,
                    'server',
                    net,
120
121
122
                    NicClass,
                    HostClass,
                    NcClass,
Jonas Kaufmann's avatar
Jonas Kaufmann committed
123
124
125
126
127
128
129
130
                    node.IperfUDPServer
                )

                clients = create_basic_hosts(
                    e,
                    n_client,
                    'client',
                    net,
131
132
133
                    NicClass,
                    HostClass,
                    NcClass,
Jonas Kaufmann's avatar
Jonas Kaufmann committed
134
135
136
137
138
139
                    node.IperfUDPClient,
                    ip_start=2
                )

                clients[n_client - 1].node_config.app.is_last = True
                clients[n_client - 1].wait = True
140
141
142
143
144
145
146

                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

Jonas Kaufmann's avatar
Jonas Kaufmann committed
147
                servers[0].cpu_freq = '3GHz'
148
149
150
151
152

                print(e.name)

                # add to experiments
                experiments.append(e)