initial version of robust engine, add discard link, need more random mock test, next milestone will be recovery

This commit is contained in:
tqchen
2014-11-28 15:56:12 -08:00
parent a8128493c2
commit a30075794b
4 changed files with 677 additions and 10 deletions

View File

@@ -12,13 +12,14 @@ endif
# specify tensor path
BIN = test_allreduce
OBJ = engine_tcp.o
OBJ = engine_robust.o engine_tcp.o
.PHONY: clean all
all: $(BIN) $(MPIBIN)
engine_tcp.o: ../src/engine_tcp.cpp ../src/*.h
test_allreduce: test_allreduce.cpp ../src/*.h engine_tcp.o
engine_robust.o: ../src/engine_robust.cpp ../src/*.h
test_allreduce: test_allreduce.cpp ../src/*.h engine_robust.o
$(BIN) :
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.cpp %.o %.c, $^)