-
Notifications
You must be signed in to change notification settings - Fork 129
/
Makefile
386 lines (287 loc) · 12.6 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
define HELP
CompilerGym $(VERSION). Available targets:
Basic Commands
--------------
make install
Build the CompilerGym python package and install it.
make test
Run the unit tests against the installed version of CompilerGym. Must
run `make install` first. Note the full test suite is large and may take
many minutes to run. You can select only one file or directory to test
using the TEST_TARGET variable. For example, to only run the tests in
the 'tests/compiler_env_test.py' file, use:
make test TEST_TARGET=tests/compiler_env_test.py
Additional arguments may be passed to pytest using the PYTEST_ARGS
variable, for example:
make test PYTEST_ARGS="--ignore tests/llvm"
make docs
Build the HTML documentation using Sphinx. This is the documentation
site that is hosted at <https://facebookresearch.github.io/CompilerGym>.
The generated HTML files are in docs/build/html. See also
'make livedocs' below for building and serving a live version of the
documentation.
make www
Run a local instance of the web visualization service. See www/README.md
for details.
Tidying up
-----------
make clean
Remove build artifacts.
make distclean
Clean up all build artifacts, including the build cache.
make uninstall
Uninstall the python package.
make purge
Uninstall the python package and completely remove all datasets, logs,
and cached files. Any experimental data or generated logs will be
irreversibly deleted!
Advanced Usage
--------------
make install-pre-commit
Install the pre-commit hooks. Run this if you plan to contribute code.
make livedocs
Build the HTML documentation and serve them on localhost:8000. Changes
to the documentation will automatically trigger incremental rebuilds
and reload the changes. To change the host and port, set the SPHINXOPTS
env variable: `SPHINXOPTS="--port 1234 --host 0.0.0.0" make livedocs`
make bdist_wheel
Build an optimized python wheel but do not install it. The generated
file is in dist/compiler_gym-<version>-<platform_tags>.whl
make bdist_wheel-linux
Use a docker container to build a python wheel for linux. This is only
used for making release builds. This requires docker.
make bdist_wheel-docker
Build a docker image containing CompilerGym.
bdist_wheel-linux-shell
Drop into a bash terminal in the docker container that is used for
linux builds. This may be useful for debugging bdist_wheel-linux
builds.
make bdist_wheel-linux-test
Run the `make test` suite against the build artifact generated by
`make bdist_wheel-linux`.
make test-cov
The same as `make test`, but with python test coverage reporting. A
summary of test coverage is printed at the end of execution and the full
details are recorded in a coverage.xml file in the project root
directory. To print a report of file coverage to stdout at the end
of testing, use argument `PYTEST_ARGS="--cov-report=term"`.
make fuzz
Run the fuzz testing suite against an installed CompilerGym package.
Fuzz tests are tests that generate their own inputs and run in a loop
until an error has been found, or until a minimum number of seconds have
elapsed. This minimum time is controlled using a FUZZ_SECONDS variable.
The default is 300 seconds (5 minutes). Override this value at the
command line, for example `FUZZ_SECONDS=60 make fuzz` will run
the fuzz tests for a minimum of one minute. This requires that the
CompilerGym package has been installed (`make install`).
endef
export HELP
# Configurable paths to binaries.
CC ?= clang
CXX ?= clang++
BAZEL ?= bazel
DOXYGEN ?= doxygen
IBAZEL ?= ibazel
PANDOC ?= pandoc
PYTHON ?= python3
# Bazel build options.
BAZEL_OPTS ?=
BAZEL_FETCH_OPTS ?=
BAZEL_BUILD_OPTS ?= -c opt
BAZEL_TEST_OPTS ?=
# The path of the repository reoot.
ROOT := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
VERSION := $(shell cat VERSION)
OS := $(shell uname)
##############
# Setting up #
##############
.DEFAULT_GOAL := help
.PHONY: help init
help:
@echo "$$HELP"
dev-init:
$(PYTHON) -m pip install -r requirements_pre_commit.txt
pre-commit install
# DEPRECATED(v0.2.5): To be removed no earlier than v0.2.6.
init: dev-init
@echo
@echo "Warning: 'make init' is deprecated, and will be removed in a future release."
@echo "Use 'make dev-init' instead."
############
# Building #
############
# Files and directories generated by python disttools.
DISTTOOLS_OUTS := \
build \
compiler_gym.egg-info \
dist \
$(NULL)
BUILD_TARGET ?= //:package
BAZEL_FETCH_RETRIES ?= 5
# Run `bazel fetch` in a retry loop due to intermitent failures when fetching
# remote archives in the CI environment.
bazel-fetch:
@for i in $$(seq 1 $(BAZEL_FETCH_RETRIES)); do \
echo "$(BAZEL) $(BAZEL_OPTS) fetch $(BAZEL_FETCH_OPTS) $(BUILD_TARGET)"; \
if $(BAZEL) $(BAZEL_OPTS) fetch $(BAZEL_FETCH_OPTS) $(BUILD_TARGET) ; then \
break; \
else \
echo "bazel fetch attempt $$i of $(BAZEL_FETCH_RETRIES) failed" >&2; \
fi; \
if [ $$i -eq 10 ]; then \
false; \
fi; \
done
bazel-build: bazel-fetch
$(PYTHON) -m pip install -r compiler_gym/requirements.txt -r compiler_gym/requirements_build.txt
$(BAZEL) $(BAZEL_OPTS) build $(BAZEL_BUILD_OPTS) $(BUILD_TARGET)
bdist_wheel: bazel-build
$(PYTHON) setup.py bdist_wheel
bdist_wheel-linux-rename:
mv dist/compiler_gym-$(VERSION)-py3-none-linux_x86_64.whl dist/compiler_gym-$(VERSION)-py3-none-manylinux2014_x86_64.whl
# The docker image to use for building the bdist_wheel-linux target. See
# packaging/Dockerfile.
MANYLINUX_DOCKER_IMAGE ?= chriscummins/compiler_gym-manylinux-build:2021-09-21
bdist_wheel-linux:
rm -rf build
docker pull $(MANYLINUX_DOCKER_IMAGE)
docker run -v $(ROOT):/CompilerGym --workdir /CompilerGym --rm --shm-size=8g "$(MANYLINUX_DOCKER_IMAGE)" /bin/sh -c './packaging/compiler_gym-manylinux-build/container_init.sh && make bdist_wheel bdist_wheel-linux-rename BAZEL_OPTS="$(BAZEL_OPTS)" BAZEL_BUILD_OPTS="$(BAZEL_BUILD_OPTS)" BAZEL_FETCH_OPTS="$(BAZEL_FETCH_OPTS)" && rm -rf build'
bdist_wheel-linux-shell:
docker run -v $(ROOT):/CompilerGym --workdir /CompilerGym --rm --shm-size=8g -it --entrypoint "/bin/bash" "$(MANYLINUX_DOCKER_IMAGE)"
bdist_wheel-linux-test:
docker run -v $(ROOT):/CompilerGym --workdir /CompilerGym --rm --shm-size=8g "$(MANYLINUX_DOCKER_IMAGE)" /bin/sh -c 'cd /CompilerGym && pip3 install -U pip && pip3 install dist/compiler_gym-$(VERSION)-py3-none-manylinux2014_x86_64.whl && pip install -r tests/requirements.txt && make test'
bdist_wheel-docker: bdist_wheel-linux
cp dist/compiler_gym-$(VERSION)-py3-none-manylinux2014_x86_64.whl packaging/compiler_gym-local-wheel
docker build -t chriscummins/compiler_gym:latest packaging/compiler_gym-local-wheel
docker build -t chriscummins/compiler_gym:$(VERSION) packaging/compiler_gym-local-wheel
all: docs bdist_wheel bdist_wheel-linux
.PHONY: bazel-fetch bazel-build bdist_wheel bdist_wheel-linux bdist_wheel-linux-shell bdist_wheel-linux-test
#################
# Web interface #
#################
# A list of in-tree files generated by the www project build.
WWW_OUTS = \
www/frontends/compiler_gym/build \
www/frontends/compiler_gym/node_modules \
$(NULL)
# The name of the docker image built by the "www-image" target.
WWW_IMAGE_TAG ?= chriscummins/compiler_gym-www
www: www-build
cd www && $(PYTHON) www.py
www-build:
$(PYTHON) -m pip install -r www/requirements.txt
cd www/frontends/compiler_gym && npm ci && npm run build
www-image: www-build
cd www && docker build -t "$(WWW_IMAGE_TAG)" .
docker run -p 5000:5000 "$(WWW_IMAGE_TAG)"
.PHONY: www www-build
#################
# Documentation #
#################
docs/source/changelog.rst: CHANGELOG.md
echo "..\n Generated from $<. Do not edit!\n" > $@
echo "Changelog\n=========\n" >> $@
$(PANDOC) --from=markdown --to=rst $< >> $@
docs/source/contributing.rst: CONTRIBUTING.md
echo "..\n Generated from $<. Do not edit!\n" > $@
$(PANDOC) --from=markdown --to=rst $< >> $@
GENERATED_DOCS := \
docs/source/changelog.rst \
docs/source/contributing.rst \
$(NULL)
gendocs: $(GENERATED_DOCS)
doxygen:
cd docs && $(DOXYGEN) Doxyfile
doxygen-rst:
cd docs && $(PYTHON) generate_cc_rst.py
docs: gendocs bazel-build doxygen
$(PYTHON) -m pip install -r docs/requirements.txt
cd docs/source && PYTHONPATH=$(ROOT)/bazel-bin/package.runfiles/CompilerGym sphinx-build -M html . ../build $(SPHINXOPTS)
livedocs: gendocs doxygen
$(PYTHON) -m pip install -r docs/requirements.txt
cd docs/source && PYTHONPATH=$(ROOT)/bazel-bin/package.runfiles/CompilerGym sphinx-autobuild . ../build $(SPHINXOPTS) --pre-build 'make -C ../.. gendocs bazel-build doxygen' --watch ../../compiler_gym
###########
# Testing #
###########
COMPILER_GYM_SITE_DATA ?= /tmp/compiler_gym_$(USER)/tests/site_data
COMPILER_GYM_CACHE ?= /tmp/compiler_gym_$(USER)/tests/cache
# A directory that is used as the working directory for running pytest tests
# by symlinking the tests directory into it.
INSTALL_TEST_ROOT ?= /tmp/compiler_gym_$(USER)/install_tests
# The target to use. If not provided, all tests will be run. For `make test` and
# related, this is a bazel target pattern, with default value '//...'. For `make
# test` and related, this is a relative file path of the directory or file to
# test, with default value 'tests'.
TEST_TARGET ?=
# Extra command line arguments for pytest.
PYTEST_ARGS ?=
DEFAULT_PYTEST_ARGS = --ignore tests/mlir
# The path of the XML pytest coverage report to generate when running the
# test-cov target.
COV_REPORT ?= $(ROOT)/coverage.xml
bazel-test: bazel-fetch
$(BAZEL) $(BAZEL_OPTS) test $(BAZEL_TEST_OPTS) $(if $(TEST_TARGET),$(TEST_TARGET),//...)
bazel-itest: bazel-fetch
$(IBAZEL) $(BAZEL_OPTS) test $(BAZEL_TEST_OPTS) $(if $(TEST_TARGET),$(TEST_TARGET),//...)
# Since we can't run compiler_gym from the project root we need to jump through
# some hoops to run pytest "out of tree" by creating an empty directory and
# symlinking the test directory into it so that pytest can be invoked.
install-test-setup:
$(PYTHON) -m pip install -r tests/requirements.txt
mkdir -p "$(INSTALL_TEST_ROOT)"
rm -f "$(INSTALL_TEST_ROOT)/tests" "$(INSTALL_TEST_ROOT)/tox.ini"
ln -s "$(ROOT)/tests" "$(INSTALL_TEST_ROOT)"
ln -s "$(ROOT)/tox.ini" "$(INSTALL_TEST_ROOT)"
define pytest
cd "$(INSTALL_TEST_ROOT)" && pytest $(if $(TEST_TARGET),$(TEST_TARGET),tests) $(1) $(DEFAULT_PYTEST_ARGS) $(PYTEST_ARGS)
endef
# DEPRECATED(v0.2.5): To be removed no earlier than v0.2.6.
install-test: test
@echo
@echo "Warning: 'make install-test' is deprecated, and will be removed in a future release."
@echo "Use 'make test' instead."
test: | install-test-setup
$(call pytest,--no-success-flaky-report --benchmark-disable -n auto -k "not fuzz" --durations=5)
# Note we export $CI=1 so that the tests always run as if within the CI
# environement. This is to ensure that the reported coverage matches that of
# the value on: https://codecov.io/gh/facebookresearch/CompilerGym
test-cov: install-test-setup
export CI=1; $(call pytest,--no-success-flaky-report --benchmark-disable -n auto -k "not fuzz" --durations=5 --cov=compiler_gym --cov-report=xml:$(COV_REPORT))
# The minimum number of seconds to run the fuzz tests in a loop for. Override
# this at the commandline, e.g. `FUZZ_SECONDS=1800 make fuzz`.
FUZZ_SECONDS ?= 300
fuzz: install-test-setup
$(call pytest,--no-success-flaky-report -p no:sugar -x -vv -k fuzz --seconds=$(FUZZ_SECONDS))
.PHONY: test test-cov fuzz
################
# Installation #
################
install: | bazel-build
$(PYTHON) -m pip install . --force-reinstall --no-deps
.PHONY: install
##############
# Tidying up #
##############
# A list of all filesystem locations that CompilerGym may use for storing
# files and data.
COMPILER_GYM_DATA_FILE_LOCATIONS = \
"$(HOME)/.cache/compiler_gym" \
"$(HOME)/.local/share/compiler_gym" \
"$(HOME)/logs/compiler_gym" \
/dev/shm/compiler_gym \
/dev/shm/compiler_gym_$(USER) \
/tmp/compiler_gym \
/tmp/compiler_gym_$(USER) \
$(NULL)
.PHONY: clean distclean uninstall purge
clean:
rm -rf $(GENERATED_DOCS) $(DISTTOOLS_OUTS) $(WWW_OUTS)
find . -type d -name __pycache__ -o -name .benchmarks -print0 | xargs -0 -I {} /bin/rm -rf "{}"
find . -type f -name '.coverage*' -delete
distclean: clean
bazel clean --expunge
uninstall:
$(PYTHON) -m pip uninstall -y compiler_gym
purge: distclean uninstall
rm -rf $(COMPILER_GYM_DATA_FILE_LOCATIONS)