forked from ian-small/Chloe.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
20 lines (15 loc) · 1.03 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# run this if there is a DEALER/ROUTER frontend running
# see run-broker or run-chloe-broker:
run-chloe:
julia --threads=8 --project=. --color=yes distributed.jl -l info --workers=4 --address=tcp://127.0.0.1:9467 --broker=@ipc:///tmp/chloe-client
# start up chloe with a broker in the background
run-chloe-broker:
julia --threads=8 --project=. --color=yes distributed.jl -l info --workers=4 --broker=ipc:///tmp/chloe-client
# just run the broker
run-broker:
julia --project=. -q --startup-file=no src/broker.jl --worker=tcp://127.0.0.1:9467 --client=ipc:///tmp/chloe-client
run-chloe-logger:
julia --threads=8 --project=. --color=yes distributed.jl -l info --workers=4 --address=tcp://127.0.0.1:9467 --broker=ipc:///tmp/chloe-client --backend=ipc:///tmp/chloe-logger
run-chloe-backend:
julia --threads=8 --project=. --color=yes distributed.jl -l info --workers=4 --address=tcp://127.0.0.1:9467 --backend=ipc:///tmp/chloe-backend --broker=@ipc:///tmp/chloe-client
.PHONY: run-chloe run-chloe-broker run-broker run-chloe-logger run-chloe-backend