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

Makefile - github.com/marian-nmt/marian-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 435240552cc5067742d202ff29aad7055a545d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

THREADS=16

GIT_MARIAN=http://github.com/marian-nmt/marian-dev.git
GIT_MOSES_SCRIPTS=http://github.com/marian-nmt/moses-scripts.git

URL_MODELS=

.PHONY: marian install
.SECONDARY:


install: marian/build/marian

download:
	test $(URL_MODELS) && wget -q --show-progress $(URL_MODELS)

#####################################################################

marian/build/marian: marian
	mkdir -p $</build && cd $</build && cmake .. -DCOMPILE_EXAMPLES=ON -DUSE_CUDNN=ON && make -j$(THREADS)

marian:
	git -C $@ pull || git clone $(GIT_MARIAN) $@