Skip to content

Commit

Permalink
Add support for random inputs
Browse files Browse the repository at this point in the history
Signed-off-by: David Schall <[email protected]>
  • Loading branch information
dhschall committed Feb 20, 2023
1 parent 067998b commit f3064dd
Show file tree
Hide file tree
Showing 5 changed files with 574 additions and 31 deletions.
2 changes: 1 addition & 1 deletion simulation/wkdir-tmpl/run_sim.tmpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def writeRunScript(dir, function_name):
/root/test-client \
-function-name {FN_NAME} \
-url localhost \
-port 50000 \
-port 50000 -random \
-n {n_invocations} \
-w {n_warming} \
-m5ops \
Expand Down
2 changes: 1 addition & 1 deletion simulation/wkdir-tmpl/run_sim_two_machine.tmpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def writeDriveScript(dir, function):
/root/test-client \
-function-name {function} \
-url {test_ip} \
-port 50000 \
-port 50000 -random \
-n {n_invocations} \
-w {n_warming} \
-m5ops \
Expand Down
14 changes: 7 additions & 7 deletions tools/client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ go 1.18

require (
github.com/sirupsen/logrus v1.9.0
github.com/vhive-serverless/vSwarm-proto v0.4.0
github.com/vhive-serverless/vSwarm-proto v0.4.1
)

require (
github.com/containerd/containerd v1.6.18 // indirect
github.com/containerd/containerd v1.6.6 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
Expand All @@ -19,10 +19,10 @@ require (
go.opentelemetry.io/otel/exporters/zipkin v1.8.0 // indirect
go.opentelemetry.io/otel/sdk v1.8.0 // indirect
go.opentelemetry.io/otel/trace v1.8.0 // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252 // indirect
google.golang.org/grpc v1.50.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
Loading

0 comments on commit f3064dd

Please sign in to comment.