mirror of
https://github.com/wassname/ray.git
synced 2026-08-11 11:24:51 +08:00
Convert task_spec to flatbuffers (#255)
* convert Ray to C++ * convert task_spec to flatbuffers * fix * it compiles * latest * tests are passing * task2 -> task * fix * fix * fix * fix * fix * linting * fix valgrind * upgrade flatbuffers * use debug mode for valgrind * fix naming and comments * downgrade flatbuffers * fix linting * reintroduce TaskSpec_free * rename TaskSpec -> TaskInfo * refactoring * linting
This commit is contained in:
committed by
Robert Nishihara
parent
65a8659f3d
commit
0b8d279ef2
@@ -25,7 +25,12 @@ bash "$ROOT_DIR/src/numbuf/thirdparty/build_thirdparty.sh"
|
||||
|
||||
# Now build everything.
|
||||
pushd "$ROOT_DIR/python/ray/core"
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ../../..
|
||||
if [ "$VALGRIND" = "1" ]
|
||||
then
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug ../../..
|
||||
else
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ../../..
|
||||
fi
|
||||
make clean
|
||||
make
|
||||
popd
|
||||
|
||||
Reference in New Issue
Block a user