forked from NervanaSystems/neon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
279 lines (239 loc) · 8.44 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
# ----------------------------------------------------------------------------
# Copyright 2014-2016 Nervana Systems Inc. All rights reserved.
#
# 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.
# ----------------------------------------------------------------------------
# Top-level control of the building/installation/cleaning of various targets
#
# set empty to prevent any implicit rules from firing.
.SUFFIXES:
# Choose default Python version; overrideable with "make python2" or "make python3".
PY := $(shell python --version 2>&1 | cut -c8)
VIRTUALENV_DIR_BASE := .venv
# get release version info
RELEASE := $(strip $(shell grep '^VERSION *=' setup.py | cut -f 2 -d '=' \
| tr -d "\'"))
# basic check to see if any CUDA compatible GPU is installed
# set this to false to turn off GPU related functionality
HAS_GPU := $(shell nvcc --version > /dev/null 2>&1 && echo true)
ifdef HAS_GPU
# Get CUDA_ROOT for LD_RUN_PATH
export CUDA_ROOT:=$(abspath $(shell which nvcc)/../..)
else
# Try to find CUDA. Kernels will still need nvcc in path
export CUDA_ROOT:=$(firstword $(wildcard $(addprefix /usr/local/, cuda-8.0 cuda-7.5 cuda-7.0 cuda)))
ifdef CUDA_ROOT
export PATH:=$(CUDA_ROOT)/bin:$(PATH)
HAS_GPU := $(shell $(CUDA_ROOT)/bin/nvcc --version > /dev/null 2>&1 && echo true)
endif
endif
ifdef CUDA_ROOT
# Compiling with LD_RUN_PATH eliminates the need for LD_LIBRARY_PATH
# when running
export LD_RUN_PATH:=$(CUDA_ROOT)/lib64
endif
# set this to true to install visualization dependencies and functionality
# (off by default)
VIS :=
# style checking related
STYLE_CHECK_OPTS :=
STYLE_CHECK_DIRS := neon bin/* tests examples
# pytest options
TEST_OPTS :=
TEST_DIRS := tests/
# turn off GPU tests if no GPU present
# TODO: refactor neon/backends/tests to run under CPU
ifneq ($(HAS_GPU), true)
TEST_DIRS := -k cpu -m "not hasgpu" $(TEST_DIRS)
else
TEST_DIRS := -m "hasgpu or not hasgpu" $(TEST_DIRS)
endif
# this variable controls where we publish Sphinx docs to
DOC_DIR := doc
DOC_PUB_RELEASE_PATH := $(DOC_PUB_PATH)/$(RELEASE)
# neon compiled objects
DATA_LOADER := loader
ifeq ($(PY), 2)
VIRTUALENV_EXE := virtualenv -p python2.7
PYLINT3K_ARGS := --disable=no-absolute-import
VIRTUALENV_DIR = $(VIRTUALENV_DIR_BASE)$(PY)
ACTIVATE = $(VIRTUALENV_DIR)/bin/activate
else
VIRTUALENV_EXE := python3 -m venv
PYLINT3K_ARGS :=
VIRTUALENV_DIR = $(VIRTUALENV_DIR_BASE)$(PY)
ACTIVATE = $(VIRTUALENV_DIR)/bin/activate
endif
.PHONY: default all env sysinstall sysinstall_nodeps neon_install python2 python3 \
sysdeps sysuninstall clean_py clean_so \
clean test coverage style lint lint3k check doc html release examples \
serialize_check $(DATA_LOADER)
default: env
all:
$(MAKE) PY=3 TEST_OPTS='$(TEST_OPTS)' test
$(MAKE) PY=2 TEST_OPTS='$(TEST_OPTS)' test
env: $(ACTIVATE) $(DATA_LOADER)
python2: VIRTUALENV_EXE := virtualenv -p python2.7
python2: VIRTUALENV_DIR := $(VIRTUALENV_DIR_BASE)2
python2: ACTIVATE := $(VIRTUALENV_DIR)/bin/activate
python2: PYLINT3K_ARGS := --disable=no-absolute-import
python2: env
python3: VIRTUALENV_EXE := python3 -m venv
python3: VIRTUALENV_DIR := $(VIRTUALENV_DIR_BASE)3
python3: ACTIVATE := $(VIRTUALENV_DIR)/bin/activate
python3: PYLINT3K_ARGS :=
python3: env
$(ACTIVATE): requirements.txt gpu_requirements.txt vis_requirements.txt
@echo "Updating virtualenv dependencies in: $(VIRTUALENV_DIR)..."
@test -d $(VIRTUALENV_DIR) || $(VIRTUALENV_EXE) $(VIRTUALENV_DIR)
@. $(ACTIVATE); pip install -U pip
@# cython added separately due to h5py dependency ordering bug. See:
@# https://github.com/h5py/h5py/issues/535
@. $(ACTIVATE); pip install cython==0.23.1
@. $(ACTIVATE); pip install -r requirements.txt
ifeq ($(VIS), true)
@echo "Updating visualization related dependecies in $(VIRTUALENV_DIR)..."
@. $(ACTIVATE); pip install -r vis_requirements.txt
endif
@echo
ifeq ($(HAS_GPU), true)
@echo "Updating GPU dependencies in $(VIRTUALENV_DIR)..."
@. $(ACTIVATE); pip install -r gpu_requirements.txt
@echo
endif
@echo "Installing neon in development mode..."
@. $(ACTIVATE); python setup.py develop
@rm -f $(VIRTUALENV_DIR_BASE); ln -s $(VIRTUALENV_DIR) $(VIRTUALENV_DIR_BASE)
@echo "###########################################################"
@echo "Setup complete. Type:"
@echo " . '$(ACTIVATE)'"
@echo "to work interactively ($(VIRTUALENV_DIR) also symlinked to $(VIRTUALENV_DIR_BASE))"
@echo "###########################################################"
@touch $(ACTIVATE)
@echo
$(DATA_LOADER):
-@cd $(DATA_LOADER) && $(MAKE) bin/loader.so HAS_GPU=$(HAS_GPU)
# TODO: handle kernel/.so compilation via setup.py directly
sysinstall_nodeps: $(DATA_LOADER) neon_install
sysinstall: sysdeps $(DATA_LOADER) neon_install
neon_install:
@echo "Installing neon system wide..."
@pip install .
@echo
sysdeps:
@echo "Installing neon dependencies system wide..."
@# cython added separately due to h5py dependency ordering bug. See:
@# https://github.com/h5py/h5py/issues/535
@pip install cython==0.23.1
@pip install -r requirements.txt
ifeq ($(VIS), true)
@pip install -r vis_requirements.txt
endif
ifeq ($(HAS_GPU), true)
@pip install -r gpu_requirements.txt
endif
sysuninstall:
@echo "Uninstalling neon system wide..."
@pip uninstall neon
@echo
clean_py:
@echo "Cleaning compiled python object files..."
@find . -name "*.py[co]" -type f -delete
@echo
clean_so:
@echo "Cleaning compiled shared object files..."
@cd $(DATA_LOADER) && $(MAKE) clean
@echo
clean: clean_py clean_so
@echo "Removing virtual environment files..."
@rm -rf $(VIRTUALENV_DIR_BASE) $(VIRTUALENV_DIR_BASE)2 $(VIRTUALENV_DIR_BASE)3
@echo
test: env
@echo "Running unit tests..."
@. $(ACTIVATE); py.test $(TEST_OPTS) $(TEST_DIRS)
@echo
systest:
@echo "Running unit tests..."
py.test $(TEST_OPTS) $(TEST_DIRS)
@echo
examples: env
@echo "Running all examples..."
@. $(ACTIVATE); tests/run_examples.py
@echo
benchmarks: env
@echo "Running all benchmarks..."
@. $(ACTIVATE); tests/run_benchmarks.py
@echo
serialize_check: env
@echo "Running CPU backend test of model serialization"
@. $(ACTIVATE); python tests/serialization_check.py -e 10 -b cpu
@echo
coverage: env
@. $(ACTIVATE); py.test --cov=neon tests/
@echo
style: env
@. $(ACTIVATE); flake8 $(STYLE_CHECK_OPTS) $(STYLE_CHECK_DIRS)
@. $(ACTIVATE); pylint --reports=n --py3k $(PYLINT3K_ARGS) --ignore=.venv *
@echo
lint: env
@. $(ACTIVATE); pylint --output-format=colorized neon
@echo
lint3k: env
@. $(ACTIVATE); pylint --py3k $(PYLINT3K_ARGS) --ignore=.venv *
@echo
check: env
@echo "Running style checks. Number of style errors is... "
-@. $(ACTIVATE); flake8 --count $(STYLE_CHECK_OPTS) $(STYLE_CHECK_DIRS) \
> /dev/null
@echo
@echo "Number of missing docstrings is..."
-@. $(ACTIVATE); pylint --disable=all --enable=missing-docstring -r n \
neon | grep "^C" | wc -l
@echo
@echo "Running unit tests..."
-@. $(ACTIVATE); py.test $(TEST_DIRS) | tail -1 | cut -f 2,3 -d ' '
@echo
doc: env
@. $(ACTIVATE); neon --help > doc/source/neon_help_output.txt
$(MAKE) -C $(DOC_DIR) clean
@. $(ACTIVATE); $(MAKE) -C $(DOC_DIR) html
@echo "Documentation built in $(DOC_DIR)/build/html"
@echo
html: doc
@echo "To view documents open your browser to: http://localhost:8000"
@cd $(DOC_DIR)/build/html; python -m SimpleHTTPServer
@echo
publish_doc: doc
ifneq (, $(DOC_PUB_HOST))
@echo "relpath: $(DOC_PUB_RELEASE_PATH)"
@-cd $(DOC_DIR)/build/html && \
rsync -avz -essh --perms --chmod=ugo+rX . \
$(DOC_PUB_USER)@$(DOC_PUB_HOST):$(DOC_PUB_RELEASE_PATH)
@-ssh $(DOC_PUB_USER)@$(DOC_PUB_HOST) \
'rm -f $(DOC_PUB_PATH)/latest && \
ln -sf $(DOC_PUB_RELEASE_PATH) $(DOC_PUB_PATH)/latest'
else
@echo "Can't publish. Ensure DOC_PUB_HOST, DOC_PUB_USER, DOC_PUB_PATH set"
endif
dist: env
@echo "Prepping distribution..."
@python setup.py sdist
release: check dist
@echo "Bump version number in setup.py"
@vi setup.py
@echo "Update ChangeLog"
@vi ChangeLog
@echo "TODO: commit changes"
@echo "TODO: publish release to PYPI"
@echo "TODO (manual script): publish documentation"
@echo