79 строки
2.7 KiB
Python
79 строки
2.7 KiB
Python
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you 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.
|
|
import os
|
|
import sys
|
|
from setuptools import find_packages
|
|
from distutils.core import setup
|
|
|
|
def config_cython():
|
|
# temporary disable cython for now
|
|
# as NNVM uses local DLL build
|
|
return []
|
|
try:
|
|
from Cython.Build import cythonize
|
|
from distutils.extension import Extension
|
|
if sys.version_info >= (3, 0):
|
|
subdir = "_cy3"
|
|
else:
|
|
subdir = "_cy2"
|
|
ret = []
|
|
path = "nnvm/cython"
|
|
|
|
for fn in os.listdir(path):
|
|
if not fn.endswith(".pyx"):
|
|
continue
|
|
ret.append(Extension(
|
|
"nnvm/%s/%s" % (subdir, fn[:-4]),
|
|
["nnvm/cython/%s" % fn],
|
|
include_dirs=["../include/"],
|
|
language="c++"))
|
|
return cythonize(ret)
|
|
except:
|
|
print("Cython is not installed, will compile without cython module")
|
|
return []
|
|
|
|
# We can not import `libinfo.py` in setup.py directly since __init__.py
|
|
# Will be invoked which introduces dependences
|
|
CURRENT_DIR = os.path.dirname(__file__)
|
|
libinfo_py = os.path.join(CURRENT_DIR, './nnvm/libinfo.py')
|
|
libinfo = {'__file__': libinfo_py}
|
|
exec(compile(open(libinfo_py, "rb").read(), libinfo_py, 'exec'), libinfo, libinfo)
|
|
|
|
__version__ = libinfo['__version__']
|
|
if not os.getenv('CONDA_BUILD'):
|
|
LIB_PATH = libinfo['find_lib_path']()
|
|
_, LIB_NAME = os.path.split(LIB_PATH[0])
|
|
curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
|
|
rpath = os.path.relpath(LIB_PATH[0], curr_path)
|
|
setup_kwargs = dict(
|
|
include_package_data=True,
|
|
data_files=[('nnvm', [rpath])]
|
|
)
|
|
else:
|
|
setup_kwargs = {}
|
|
|
|
setup(name='nnvm',
|
|
version=__version__,
|
|
description="NNVM: Open Compiler for AI Frameworks",
|
|
zip_safe=False,
|
|
install_requires=[
|
|
'numpy'
|
|
],
|
|
packages=find_packages(),
|
|
url='https://github.com/dmlc/nnvm',
|
|
**setup_kwargs)
|