forked from kaldi-asr/kaldi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
47 lines (38 loc) · 2.08 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
all:
EXTRA_CXXFLAGS = -Wno-sign-compare
include ../kaldi.mk
LDFLAGS += $(CUDA_LDFLAGS)
LDLIBS += $(CUDA_LDLIBS)
BINFILES = nnet-am-info nnet-init \
nnet-train-simple nnet-train-ensemble nnet-train-transitions nnet-latgen-faster nnet-am-copy \
nnet-am-init nnet-insert nnet-align-compiled \
nnet-compute-prob nnet-copy-egs nnet-shrink nnet-combine nnet-combine-a \
nnet-am-average nnet-am-combine nnet-am-compute nnet-am-shrink nnet-am-mixup \
nnet-get-egs nnet-train-parallel nnet-gradient \
nnet-select-egs nnet-combine-fast \
nnet-subset-egs nnet-shuffle-egs nnet-am-fix nnet-logprob nnet-logprob2 \
nnet-logprob2-parallel nnet-logprob-parallel nnet-am-stats nnet-am-rescale \
nnet-am-limit-rank nnet-latgen-faster-parallel nnet-to-raw-nnet nnet-compute \
raw-nnet-concat nnet-am-limit-rank-final raw-nnet-info \
nnet-get-feature-transform nnet-compute-from-egs \
nnet-am-widen nnet-show-progress nnet-limit-degradation \
nnet-get-feature-transform-multi nnet-copy-egs-discriminative \
nnet-get-egs-discriminative nnet-shuffle-egs-discriminative \
nnet-compare-hash-discriminative nnet-combine-egs-discriminative \
nnet-train-discriminative-simple nnet-train-discriminative-parallel \
nnet-modify-learning-rates nnet-normalize-stddev nnet-perturb-egs \
nnet-perturb-egs-fmllr nnet-get-weighted-egs nnet-adjust-priors \
cuda-compiled nnet-replace-last-layers nnet-am-switch-preconditioning \
nnet1-to-raw-nnet raw-nnet-copy nnet-relabel-egs nnet-am-reinitialize \
nnet2-boost-silence
OBJFILES =
# Add this dependency to force cuda-compiled.o to be rebuilt when we reconfigure.
cuda-compiled.o: ../kaldi.mk
TESTFILES =
ADDLIBS = ../nnet2/kaldi-nnet2.a ../nnet/kaldi-nnet.a \
../cudamatrix/kaldi-cudamatrix.a ../decoder/kaldi-decoder.a \
../lat/kaldi-lat.a ../fstext/kaldi-fstext.a ../hmm/kaldi-hmm.a \
../transform/kaldi-transform.a ../gmm/kaldi-gmm.a \
../tree/kaldi-tree.a ../util/kaldi-util.a ../thread/kaldi-thread.a \
../matrix/kaldi-matrix.a ../base/kaldi-base.a
include ../makefiles/default_rules.mk