forked from netx-repo/PipeSwitch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiment.sh
More file actions
46 lines (31 loc) · 1.11 KB
/
experiment.sh
File metadata and controls
46 lines (31 loc) · 1.11 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# ##############################
# ### Create the environment ###
# # Build basic Docker image on host
bash scripts/environment/host_build_docker_image_base.sh
# # Export basic Docker image on host
bash scripts/environment/host_export_docker_image_base.sh
# Copy basic Docker image to servers
bash scripts/environment/host_push_docker_image_base.sh
# Load basic Docker image on servers
bash scripts/environment/host_build_docker_image_ready_model.sh
bash scripts/environment/host_build_docker_image_pipeswitch.sh
bash scripts/environment/host_build_docker_image_mps.sh
# ### Create the environment END ###
# ##################################
# ####################
# ### Plot figures ###
mkdir output
# Warm up servers
bash scripts/environment/host_run_warmup.sh
# PLot figure 5
bash scripts/figures/figure5/plot_figure.sh
# PLot figure 6
bash scripts/figures/figure6/plot_figure.sh
# PLot figure 7
bash scripts/figures/figure7/plot_figure.sh
# PLot figure 8
bash scripts/figures/figure8/plot_figure.sh
# PLot figure 9
bash scripts/figures/figure9/plot_figure.sh
# ### Plot figures END ###
# ########################