-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMakefile
More file actions
103 lines (83 loc) · 4.06 KB
/
Copy pathMakefile
File metadata and controls
103 lines (83 loc) · 4.06 KB
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
# ------------------------------------------------------------------------ #
# Copyright 2022 SPTK Working Group #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# ------------------------------------------------------------------------ #
PROJECT := diffsptk
MODULE :=
OPT :=
PYTHON_VERSION := 3.11
TORCH_VERSION := 2.3.1
TORCHAUDIO_VERSION := 2.3.1
PLATFORM := cu121
PIP_TIME_LIMIT := --uploaded-prior-to=$(shell date -u -d '14 days ago' '+%Y-%m-%dT%H:%M:%SZ')
venv:
test -d .venv || python$(PYTHON_VERSION) -m venv .venv
. .venv/bin/activate && python -m pip install --upgrade pip
. .venv/bin/activate && python -m pip install --upgrade wheel $(PIP_TIME_LIMIT)
. .venv/bin/activate && python -m pip install torch==$(TORCH_VERSION)+$(PLATFORM) torchaudio==$(TORCHAUDIO_VERSION)+$(PLATFORM) \
--index-url https://download.pytorch.org/whl/$(PLATFORM)
. .venv/bin/activate && python -m pip install -e .[dev] $(PIP_TIME_LIMIT)
dist:
. .venv/bin/activate && python -m build
. .venv/bin/activate && python -m twine check dist/*
dist-clean:
rm -rf dist
doc:
. .venv/bin/activate && cd docs && make html
doc-clean:
@if [ -f .venv/bin/activate ]; then \
. .venv/bin/activate && cd docs && make clean; \
fi
check: tool
. .venv/bin/activate && python -m ruff check $(PROJECT) tests
. .venv/bin/activate && python -m ruff format --check $(PROJECT) tests docs/source
. .venv/bin/activate && python -m mdformat --check *.md
.venv/bin/codespell
./tools/taplo/taplo fmt --check *.toml
./tools/pinact/pinact run --check .github/workflows/*.yml
./tools/yamlfmt/yamlfmt --lint *.cff *.yml .github/workflows/*.yml
type-check: tool
. .venv/bin/activate && python -m pyright $(PROJECT)
format: tool
. .venv/bin/activate && python -m ruff check --fix $(PROJECT) tests
. .venv/bin/activate && python -m ruff format $(PROJECT) tests docs/source
. .venv/bin/activate && python -m mdformat *.md
./tools/taplo/taplo fmt *.toml
./tools/pinact/pinact run -u --min-age 14 .github/workflows/*.yml
./tools/yamlfmt/yamlfmt *.cff *.yml .github/workflows/*.yml
test-all: test-example test
test: tool
[ -n "$(MODULE)" ] && module="--no-cov tests/test_$(MODULE).py" || module=tests; \
. .venv/bin/activate && export PATH=./tools/SPTK/bin:$$PATH NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS=0 PYLSTRAIGHT_DEBUG=1 && \
python -m pytest $$module $(OPT)
test-example: tool
[ -n "$(MODULE)" ] && module=modules/$(MODULE).py || module=; \
. .venv/bin/activate && export NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS=0 && \
python -m pytest --doctest-modules --no-cov --ignore=$(PROJECT)/third_party $(PROJECT)/$$module
test-clean:
rm -rf tests/__pycache__
rm -rf *.png *.wav
tool:
cd tools && make
tool-clean:
cd tools && make clean
update: tool
. .venv/bin/activate && python -m pip install --upgrade pip
@./tools/taplo/taplo get -f pyproject.toml project.optional-dependencies.dev | while read -r package; do \
. .venv/bin/activate && python -m pip install --upgrade "$$package" $(PIP_TIME_LIMIT); \
done
clean: dist-clean doc-clean test-clean tool-clean
rm -rf .venv
find . -name "__pycache__" -type d | xargs rm -rf
.PHONY: venv dist dist-clean doc doc-clean check format test test-clean tool tool-clean update clean