-
Notifications
You must be signed in to change notification settings - Fork 16
/
Makefile
executable file
·100 lines (75 loc) · 2.19 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
# Makefile
define HELP_MESSAGE
kscale-sim-library
# Installing
1. Create a new Conda environment: `conda create --name kscale-sim-library python=3.8.19`
2. Activate the environment: `conda activate kscale-sim-library`
3. Install the package: `make install-dev`
# Running Tests
1. Run autoformatting: `make format`
2. Run static checks: `make static-checks`
3. Run unit tests: `make test`
endef
export HELP_MESSAGE
all:
@echo "$$HELP_MESSAGE"
.PHONY: all
# ------------------------ #
# Train #
# ------------------------ #
train-one-vis:
@python -m sim.train --task stompymini --num_envs 1
train-many-vis:
@python -m sim.train --task stompymini --num_envs 16
train:
@python -m sim.train --task stompymini --num_envs 4096 --headless
play:
@python -m sim.play --task stompymini
# ------------------------ #
# Build #
# ------------------------ #
install:
@pip install --verbose -e .
@bash sim/scripts/download_assets.sh
.PHONY: install
install-dev:
@pip install --verbose -e '.[dev]'
@bash sim/scripts/download_assets.sh
.PHONY: install
install-third-party:
@git submodule update --init --recursive
@cd third_party/isaacgym/python/ && pip install --verbose -e .
install-third-party-external:
@conda install -y nvidia/label/cuda-12.0.0::cuda-nvrtc
@cd ${ISAACGYM_PATH}/python/ && pip install --verbose -e .
build-ext:
@python setup.py build_ext --inplace
.PHONY: build-ext
clean:
rm -rf build dist *.so **/*.so **/*.pyi **/*.pyc **/*.pyd **/*.pyo **/__pycache__ *.egg-info .eggs/ .ruff_cache/
.PHONY: clean
# ------------------------ #
# Static Checks #
# ------------------------ #
format:
@isort --profile black sim
@black sim
@ruff format sim
.PHONY: format
format-cpp:
@clang-format -i $(shell find . -name '*.cpp' -o -name '*.h')
@cmake-format -i $(shell find . -name 'CMakeLists.txt' -o -name '*.cmake')
.PHONY: format-cpp
static-checks:
@isort --profile black --check --diff sim
@black --diff --check sim
@ruff check sim
@mypy --install-types --non-interactive sim
.PHONY: lint
# ------------------------ #
# Unit tests #
# ------------------------ #
test:
# python -m pytest
@echo "Unit tests not implemented"
.PHONY: test