-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
executable file
·481 lines (382 loc) · 12 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
SHELL := /bin/bash
.DEFAULT_GOAL := help
.PHONY: clean lint req doc help dev
#################################################################################
# GLOBALS #
#################################################################################
PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
PROJECT_NAME = nannos
PYTHON_INTERPRETER = python3
HOSTING = gitlab
VERSION=$(shell python3 -c "from configparser import ConfigParser; p = ConfigParser(); p.read('setup.cfg'); print(p['metadata']['version'])")
BRANCH=$(shell git branch --show-current)
URL=$(shell python3 -c "import nannos; print(nannos.__website__)")
LESSC=$(PROJECT_DIR)/doc/node_modules/less/bin/lessc
GITLAB_PROJECT_ID=28703132
GITLAB_GROUP_ID=12956132
LINT_FLAGS=E501,F401,F403,F405,W503,E402,E203
ifeq (,$(shell which conda))
HAS_CONDA=False
else
HAS_CONDA=True
endif
ifdef TEST_PARALLEL
TEST_ARGS=-n auto #--dist loadscope
endif
message = @make -s printmessage RULE=${1}
printmessage:
@sed -n -e "/^## / { \
h; \
s/.*//; \
:doc" \
-e "H; \
n; \
s/^## //; \
t doc" \
-e "s/^/---/" \
-e "s/:.*//; \
G; \
s/\\n## /---/; \
s/\\n/ /g; \
p; \
}" ${MAKEFILE_LIST} | grep "\---${RULE}---" \
| awk -F '---' \
-v ncol=$$(tput cols) \
-v indent=0 \
-v col_on="$$(tput setaf 4)" \
-v col_off="$$(tput sgr0)" \
'{ \
printf "%s%*s ", col_on, -indent, ">>>"; \
n = split($$3, words, " "); \
line_length = ncol - indent; \
for (i = 1; i <= n; i++) { \
line_length -= length(words[i]) + 1; \
if (line_length <= 0) { \
line_length = ncol - indent - length(words[i]) - 1; \
printf "\n%*s ", -indent, " "; \
} \
printf "%s ", words[i] ; \
} \
printf "%s ", col_off; \
printf "\n"; \
}'
#################################################################################
# COMMANDS #
#################################################################################
## Install Python dependencies
req:
$(call message,${@})
pip install -r requirements.txt
## Install Python dependencies for dev and test
dev:
@pip install -r dev/requirements.txt
## Clean generated files
cleangen:
$(call message,${@})
@find . -not -path "./test/data/*" | grep -E "(__pycache__|\.pyc|\.ipynb_checkpoints|\.pyo$\)" | xargs rm -rf
@rm -rf .pytest_cache build/ dist/ tmp/ htmlcov/ #nannos/nannos.egg-info/
## Clean documentation
cleandoc:
$(call message,${@})
@cd doc && make -s clean
## Clean project
clean: cleantest cleangen cleanreport cleandoc
$(call message,${@})
## Lint using flake8 (sources only)
lint:
$(call message,${@})
@flake8 --exit-zero --ignore=$(LINT_FLAGS) $(PROJECT_NAME)
## Lint using flake8
lint-all:
$(call message,${@})
@flake8 --exit-zero --ignore=$(LINT_FLAGS) $(PROJECT_NAME) test/ examples/ --exclude "dev*"
## Check for duplicated code
dup:
$(call message,${@})
@pylint --exit-zero -f colorized --disable=all --enable=similarities $(PROJECT_NAME)
## Clean code stats
cleanreport:
$(call message,${@})
@rm -f pylint.html
## Report code stats
report: cleanreport
$(call message,${@})
@pylint $(PROJECT_NAME) | pylint-json2html -f jsonextended -o pylint.html
## Check for missing docstring
dcstr:
$(call message,${@})
@pydocstyle $(PROJECT_NAME) || true
## Metric for complexity
rad:
$(call message,${@})
@radon cc $(PROJECT_NAME) -a -nb
## Run all code checks
code-check: lint dup dcstr rad
$(call message,${@})
## Reformat code
style:
$(call message,${@})
@isort -l 88 .
@black -l 88 .
## Push to gitlab
gl:
$(call message,${@})
@git add -A
@read -p "Enter commit message: " MSG; \
git commit -a -m "$$MSG"
@git push origin $(BRANCH)
## Show gitlab repository
repo:
$(call message,${@})
xdg-open https://gitlab.com/nannos/nannos
## Clean, reformat and push to gitlab
save: style gl
$(call message,${@})
## Push to gitlab (skipping continuous integration)
gl-noci:
$(call message,${@})
@git add -A
@read -p "Enter commit message: " MSG; \
git commit -a -m "$$MSG [skip ci]"
@git push origin $(BRANCH)
## Clean, reformat and push to gitlab (skipping continuous integration)
save-noci: style gl-noci
$(call message,${@})
## Make documentation css
less:
$(call message,${@})
@rm -f doc/_custom/static/css/*.css
@cd doc/_custom/static/css/less && \
chmod +x make_css && ./make_css $(LESSC)
## Rebuild css on change
watch-less:
$(call message,${@})
while inotifywait -e close_write ./doc/_custom/static/css/less/*.less; do make -s less; done
## Install requirements for building documentation
doc-req:
$(call message,${@})
@cd doc && pip install --upgrade -r requirements.txt && npm install lessc
## Build html documentation (only updated examples)
doc: less
$(call message,${@})
@cd doc && PYVISTA_OFF_SCREEN=true make -s html && make -s postpro-html
## Build html documentation (without examples)
doc-noplot: less
$(call message,${@})
@cd doc && make -s clean && make -s html-noplot && make -s postpro-html
## Show locally built html documentation in a browser
show-doc:
$(call message,${@})
@cd doc && make -s show
## Show locally built pdf documentation
show-pdf:
$(call message,${@})
@cd doc && make -s show-pdf
## Build pdf documentation (only updated examples)
pdf:
$(call message,${@})
@cd doc && make -s latexpdf
## Build pdf documentation (without examples)
pdf-noplot:
$(call message,${@})
@cd doc && make -s latexpdf-noplot
## Clean test coverage reports
cleantest:
$(call message,${@})
@rm -rf .coverage* htmlcov coverage.xml
## Install requirements for testing
test-req:
$(call message,${@})
@cd test && pip install --upgrade -r requirements.txt
define runtest
@echo
@echo "-----------------------------------------------------------------------------"
@echo "----------------------- testing $(1) backend --------------------------"
@echo "-----------------------------------------------------------------------------"
@echo
@export MPLBACKEND=agg && export NANNOS_BACKEND=$(1) && \
pytest ./test/basic \
--cov=$(PROJECT_NAME) --cov-append --cov-report term \
--durations=0 $(TEST_ARGS)
endef
## Run the test suite with numpy backend only
test-numpy:
$(call message,${@})
$(call runtest,numpy)
## Run the test suite with scipy backend only
test-scipy:
$(call message,${@})
$(call runtest,scipy)
## Run the test suite with autograd backend only
test-autograd:
$(call message,${@})
$(call runtest,autograd)
## Run the test suite with jax backend only
test-jax:
$(call message,${@})
$(call runtest,jax)
## Run the test suite with torch backend only
test-torch:
$(call message,${@})
$(call runtest,torch)
## Run tests with different backends
test-allbk: test-numpy test-scipy test-autograd test-torch test-jax
$(call message,${@})
## Run the commmon tests
test-common:
$(call message,${@})
@export MPLBACKEND=agg && export NANNOS_BACKEND=numpy && pytest ./test/common \
--cov=$(PROJECT_NAME) --cov-append --cov-report term \
--cov-report html --cov-report xml --durations=0 $(TEST_ARGS)
## Run the test suite
test: cleantest test-allbk test-common
$(call message,${@})
## Run the test suite (parallel)
testpara: cleantest
$(call message,${@})
@export OMP_NUM_THREADS=1 && make -s test TEST_PARALLEL=1
## Copy the coverage html into documentation
covdoc:
$(call message,${@})
@ls doc/_build/html/ || make doc
@ls htmlcov/ || make -s test && mv htmlcov/ doc/_build/html/coverage/
## Install locally
install:
$(call message,${@})
pip install -e .
## Tag and push tags
tag: clean style
$(call message,${@})
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
@echo "Version v$(VERSION)"
@git add -A
git commit -a -m "Publish v$(VERSION)"
@git push origin $(BRANCH)
@git tag v$(VERSION) || echo Ignoring tag since it already exists
@git push --tags || echo Ignoring tag since it already exists on the remote
## Create a release
release:
$(call message,${@})
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
@gitlab project-release create --project-id $(GITLAB_PROJECT_ID) \
--name "version $(VERSION)" --tag-name "v$(VERSION)" --description "Released version $(VERSION)"
## Create python package
package:
$(call message,${@})
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
@rm -f dist/*
@python3 -m build --sdist --wheel .
## Upload to pypi
pypi: package
$(call message,${@})
@twine upload dist/*
## Make checksum for release
checksum:
$(call message,${@})
@echo v$(VERSION)
$(eval SHA256=$(shell curl -sL https://gitlab.com/nannos/nannos/-/archive/v$(VERSION)/nannos-v$(VERSION).tar.gz | openssl sha256 | cut -c17-))
@echo $(SHA256)
## Make checksum for release
checksum-ci:
$(call message,${@})
@echo v$(VERSION)
$(eval SHA256=$(shell curl -sL https://gitlab.com/nannos/nannos/-/archive/v$(VERSION)/nannos-v$(VERSION).tar.gz | openssl sha256 | cut -c16-))
@echo $(SHA256)
## Update conda-forge recipe
recipe:
$(call message,${@})
cd .. && rm -rf nannos-feedstock && \
git clone git@github.com:benvial/nannos-feedstock.git && cd nannos-feedstock && \
git remote add upstream git@github.com:conda-forge/nannos-feedstock.git && \
git fetch upstream && \
sed -i "s/sha256: .*/sha256: $(SHA256)/" recipe/meta.yaml && \
sed -i "s/number: .*/number: 0/" recipe/meta.yaml && \
sed -i "s/{% set version = .*/{% set version = \"$(VERSION)\" %}/" recipe/meta.yaml
## Update conda-forge package
conda: checksum recipe
$(call message,${@})
cd ../nannos-feedstock && \
git branch v$(VERSION) && git checkout v$(VERSION) && \
git add . && \
git commit -a -m "New version $(VERSION)" && \
git push origin v$(VERSION) --force && echo done
## Update conda-forge package
conda-ci: checksum-ci recipe
$(call message,${@})
cd ../nannos-feedstock && \
git add . && \
git commit -a -m "New version $(VERSION)" && \
git push && echo done
## Publish release on pypi and conda-forge
publish: tag release pypi conda
$(call message,${@})
## Update header text
header:
$(call message,${@})
@cd dev && python update_header.py
## Download and install fonts locally
fonts:
$(call message,${@})
@rm -rf ~/.cache/matplotlib && \
bash doc/binder/postBuild
## Copy matplotlib stylesheet
stylesheet:
$(call message,${@})
@mkdir -p ${HOME}/.config/matplotlib && \
cp doc/_custom/nannos.mplstyle matplotlibrc ${HOME}/.config/matplotlib/
#################################################################################
# Self Documenting Commands #
#################################################################################
# Inspired by <http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html>
# sed script explained:
# /^##/:
# * save line in hold space
# * purge line
# * Loop:
# * append newline + line to hold space
# * go to next line
# * if line starts with doc comment, strip comment character off and loop
# * remove target prerequisites
# * append hold space (+ newline) to line
# * replace newline plus comments by `---`
# * print line
# Separate expressions are necessary because labels cannot be delimited by
# semicolon; see <http://stackoverflow.com/a/11799865/1968>
help:
@echo -e "$$(tput bold)Available rules:$$(tput sgr0)"
@echo -e
@sed -n -e "/^## / { \
h; \
s/.*//; \
:doc" \
-e "H; \
n; \
s/^## //; \
t doc" \
-e "s/:.*//; \
G; \
s/\\n## /---/; \
s/\\n/ /g; \
p; \
}" ${MAKEFILE_LIST} \
| LC_ALL='C' sort --ignore-case \
| awk -F '---' \
-v ncol=$$(tput cols) \
-v indent=19 \
-v col_on="$$(tput setaf 6)" \
-v col_off="$$(tput sgr0)" \
'{ \
printf "%s%*s%s ", col_on, -indent, $$1, col_off; \
n = split($$2, words, " "); \
line_length = ncol - indent; \
for (i = 1; i <= n; i++) { \
line_length -= length(words[i]) + 1; \
if (line_length <= 0) { \
line_length = ncol - indent - length(words[i]) - 1; \
printf "\n%*s ", -indent, " "; \
} \
printf "%s ", words[i]; \
} \
printf "\n"; \
}' \
| more $(shell test $(shell uname) = Darwin && echo '--no-init --raw-control-chars')