Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2018-11-26 18:18:18 +0300
committerRoman Grundkiewicz <rgrundki@exseed.ed.ac.uk>2018-11-26 18:18:18 +0300
commitabd37c6c4644ffcb3766eb3c385b37d22feee8a2 (patch)
treef3559592487712e883bf9b088bd99e19e3a23f68
parentce5b0fde9a148ada0a4ffad90114d992402b0cf8 (diff)
Remove marian installation
-rw-r--r--Makefile17
-rw-r--r--README.md4
2 files changed, 3 insertions, 18 deletions
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
diff --git a/README.md b/README.md
index f6985cc..f221dd9 100644
--- a/README.md
+++ b/README.md
@@ -26,11 +26,9 @@ Each test consists of:
## Usage
-Downloading data and tools, compiling the most recent version of marian-dev, and running
-single-GPU tests:
+Downloading data and tools, and running single-GPU tests:
make install
- make marian
make run
# or simply make