renaming project, halo -> ray (#95)

This commit is contained in:
Robert Nishihara
2016-06-10 14:12:15 -07:00
committed by Philipp Moritz
parent 44ae1788ee
commit 4cc024ae36
41 changed files with 453 additions and 481 deletions
+13 -13
View File
@@ -3,12 +3,12 @@ import argparse
import numpy as np
import test_functions
import halo.arrays.remote as ra
import halo.arrays.distributed as da
import ray.arrays.remote as ra
import ray.arrays.distributed as da
import halo
import halo.services as services
import halo.worker as worker
import ray
import ray.services as services
import ray.worker as worker
parser = argparse.ArgumentParser(description='Parse addresses for the worker to connect to.')
parser.add_argument("--scheduler-address", default="127.0.0.1:10001", type=str, help="the scheduler's address")
@@ -19,13 +19,13 @@ if __name__ == '__main__':
args = parser.parse_args()
worker.connect(args.scheduler_address, args.objstore_address, args.worker_address)
halo.register_module(test_functions)
halo.register_module(ra)
halo.register_module(ra.random)
halo.register_module(ra.linalg)
halo.register_module(da)
halo.register_module(da.random)
halo.register_module(da.linalg)
halo.register_module(sys.modules[__name__])
ray.register_module(test_functions)
ray.register_module(ra)
ray.register_module(ra.random)
ray.register_module(ra.linalg)
ray.register_module(da)
ray.register_module(da.random)
ray.register_module(da.linalg)
ray.register_module(sys.modules[__name__])
worker.main_loop()