-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
48 lines (45 loc) · 1.01 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
48
SUBDIRS = \
. \
algorithm/backSubstitution \
algorithm/bfgs \
algorithm/blahut \
algorithm/blahut/blahut-R \
algorithm/cholesky \
algorithm/determinant \
algorithm/eigensystem \
algorithm/gaussJordan \
algorithm/gradientDescent \
algorithm/gramSchmidt \
algorithm/hessenbergReduction \
algorithm/householderBidiagonalization \
algorithm/lineSearch \
algorithm/matrixInverse \
algorithm/msqrt \
algorithm/msqrtInv \
algorithm/newton \
algorithm/saga \
algorithm/svd \
algorithm/qrAlgorithm \
algorithm/rprop \
demo/channel \
demo/entropy \
demo/example1 \
demo/regression \
demo/rosenbrock \
special \
statistics \
statistics/generic \
statistics/matrixClassifier \
statistics/matrixDistribution \
statistics/matrixEstimator \
statistics/scalarClassifier \
statistics/scalarDistribution \
statistics/scalarEstimator \
statistics/vectorClassifier \
statistics/vectorDistribution \
statistics/vectorEstimator
all:
test:
@for i in $(SUBDIRS); do \
echo "Testing $$i"; (cd $$i && go test); \
done