From 83370c12a9ef8e77b306056be8fa0c6057db48a6 Mon Sep 17 00:00:00 2001 From: TJ Date: Mon, 9 Jul 2018 16:41:26 -0700 Subject: [PATCH] Squashed commit of the following: commit 02eb64bf5e9f6c22138b5111f5518f6087cea7e0 Author: TJ Date: Mon Jul 9 13:07:13 2018 -0700 set the multiverso lib file when asgd is set to true, otherwise it will look for a lib that doesn't match any rule when asgd=false --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 1a5a0483e..e0ee3e27d 100644 --- a/Makefile +++ b/Makefile @@ -694,7 +694,10 @@ EVAL_LIB:=$(LIBDIR)/lib$(EVAL).so ALL_LIBS+=$(EVAL_LIB) SRC+=$(EVAL_SRC) +# only set lib name when asgd is true +ifeq ("$(CNTK_ENABLE_ASGD)","true") MULTIVERSO_LIB:=$(LIBDIR)/libmultiverso.so +endif $(EVAL_LIB): $(EVAL_OBJ) | $(CNTKMATH_LIB) $(MULTIVERSO_LIB) @echo $(SEPARATOR)