checkin socket module

This commit is contained in:
tqchen 2014-11-21 16:09:28 -08:00
parent 84dcab6795
commit b6e1b19205
2 changed files with 4 additions and 2 deletions

View File

@ -7,9 +7,10 @@
*/
#include <cstdio>
#include <cstring>
#include <string>
#include "../utils/utils.h"
#include "../utils/io.h"
#include <string>
namespace MPI {
// forward delcaration of MPI::Datatype, but not include content

View File

@ -11,7 +11,7 @@ else
endif
# specify tensor path
BIN = test_group_data test_quantile
BIN = test_group_data test_quantile test_sock
.PHONY: clean all
@ -19,6 +19,7 @@ all: $(BIN) $(MPIBIN)
test_group_data: test_group_data.cpp ../src/utils/*.h
test_quantile: test_quantile.cpp ../src/utils/*.h
test_sock: test_sock.cpp ../src/utils/*.h
$(BIN) :
$(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.cpp %.o %.c, $^)