-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile
92 lines (76 loc) · 3.67 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
# ------------------------------------------------------------------------ #
# 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.9
TORCH_VERSION := 2.0.0
TORCHAUDIO_VERSION := 2.0.1
PLATFORM := cu118
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 icc-rt
. ./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]
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
. ./venv/bin/activate && python -m isort --check $(PROJECT) tests
. ./venv/bin/activate && python -m mdformat --check *.md
. ./venv/bin/activate && cd docs && python -m docstrfmt --check .
./tools/taplo/taplo fmt --check *.toml
./tools/yamlfmt/yamlfmt --lint *.cff *.yml .github/workflows/*.yml
format: tool
. ./venv/bin/activate && python -m ruff check --fix $(PROJECT) tests
. ./venv/bin/activate && python -m ruff format $(PROJECT) tests docs
. ./venv/bin/activate && python -m isort $(PROJECT) tests
. ./venv/bin/activate && python -m mdformat *.md
. ./venv/bin/activate && cd docs && python -m docstrfmt .
./tools/taplo/taplo fmt *.toml
./tools/yamlfmt/yamlfmt *.cff *.yml .github/workflows/*.yml
test: tool
[ -n "$(MODULE)" ] && module=tests/test_$(MODULE).py || module=; \
. ./venv/bin/activate && export PATH=./tools/SPTK/bin:$$PATH CUDA_HOME=/usr/local/cuda-11.8 NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS=0 && \
python -m pytest $$module $(OPT)
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
@for package in $$(./tools/taplo/taplo get -f pyproject.toml project.optional-dependencies.dev); do \
. ./venv/bin/activate && python -m pip install --upgrade $$package; \
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