No description
Find a file
2016-03-10 16:55:56 -08:00
cmake/Modules add FindNumPy.cmake 2016-03-10 14:46:26 -08:00
include/orchestra backend: make objectstores more robust, add logging, add reporting back of workers 2016-03-10 16:55:56 -08:00
lib/orchpy backend: make objectstores more robust, add logging, add reporting back of workers 2016-03-10 16:55:56 -08:00
protos backend: make objectstores more robust, add logging, add reporting back of workers 2016-03-10 16:55:56 -08:00
src backend: make objectstores more robust, add logging, add reporting back of workers 2016-03-10 16:55:56 -08:00
test backend: make objectstores more robust, add logging, add reporting back of workers 2016-03-10 16:55:56 -08:00
.gitignore Initial commit 2016-02-07 14:18:40 -08:00
CMakeLists.txt implementing worker.py and miscellaneous changes 2016-03-10 12:40:05 -08:00
LICENSE Initial commit 2016-02-07 14:18:40 -08:00
README.md add setup instructions 2016-02-22 17:32:07 -08:00

Orchestra

Orchestra is a distributed execution framework with a Python-like programming model.

Setup

Install GRPC

  1. Follow the instructions here, though some of the instructions are outdated.
  2. cd ~/grpc
  3. mkdir build
  4. cd build
  5. cmake ..
  6. make
  7. make install
  8. cd ..
  9. python setup.py install

Install Orchestra

  1. git clone git@github.com:amplab/orch.git
  2. cd orch
  3. mkdir build
  4. cd build
  5. cmake ..
  6. make install
  7. cd ../lib/orchpy
  8. python setup.py install
  9. cd ~/orch/test
  10. bash gen-python-code.sh
  11. python runtest.py