From abd37c6c4644ffcb3766eb3c385b37d22feee8a2 Mon Sep 17 00:00:00 2001 From: Roman Grundkiewicz Date: Mon, 26 Nov 2018 15:18:18 +0000 Subject: Remove marian installation --- Makefile | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6939f3d..0553745 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,17 @@ THREADS=16 -GIT_MARIAN_DEV=http://github.com/marian-nmt/marian-dev.git -GIT_MARIAN=http://github.com/marian-nmt/marian.git GIT_MOSES_SCRIPTS=http://github.com/marian-nmt/moses-scripts.git GIT_SUBWORD_NMT=http://github.com/rsennrich/subword-nmt.git -BRANCH=master - -EXTRA_FLAGS= -CMAKE_FLAGS=-DUSE_CUDNN=off -DCOMPILE_EXAMPLES=on -DCMAKE_BUILD_TYPE=Release $(EXTRA_FLAGS) - PIP_PACKAGES=websocket-client pyyaml -.PHONY: marian install tools models data run tools/marian +.PHONY: install tools models data run .SECONDARY: ##################################################################### -run: install marian +run: install bash ./run_mrt.sh install: tools models data @@ -41,12 +34,6 @@ data: mkdir -p $@ cd $@ && bash ./download-data.sh -marian: tools/marian -tools/marian: - git -C $@ pull || git clone $(GIT_MARIAN_DEV) -b $(BRANCH) $@ - rm -rf $@/build - mkdir -p $@/build && cd $@/build && cmake .. $(CMAKE_FLAGS) && make -j$(THREADS) - clean: git clean -x -d -f tests -- cgit v1.2.3