1 Star 0 Fork 12

王广斌 / vision

forked from Ascend / vision 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 3.00 KB
一键复制 编辑 原始数据 按行查看 历史
刘嘉巍 提交于 2024-03-05 02:31 . !58 [Fix] Clean Code
# Copyright (c) 2022, Huawei Technologies.All rights reserved.
#
# Licensed under the BSD 3-Clause License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://opensource.org/licenses/BSD-3-Clause
#
# 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 glob
import importlib
import torch
import torch_npu
from setuptools import find_packages, setup
from torch_npu.utils.cpp_extension import NpuExtension
from torch.utils.cpp_extension import BuildExtension, CppExtension
__vision__ = '0.9.1'
def get_extensions():
this_dir = os.path.dirname(os.path.abspath(__file__))
extensions_dir = os.path.join(this_dir, 'torchvision_npu', 'csrc')
main_file = glob.glob(os.path.join(extensions_dir, 'ops', 'npu', '*.cpp')) + \
glob.glob(os.path.join(extensions_dir, 'ops', '*.cpp')) + \
glob.glob(os.path.join(extensions_dir, '*.cpp'))
sources = main_file
extension = NpuExtension
define_macros = []
extra_compile_args = [
'-Wno-sign-compare',
'-Wno-deprecated-declarations',
'-Wno-return-type',
'-fstack-protector-all',
'-fPIE',
'-fPIC',
'-pie',
'-fvisibility=hidden'
]
extra_link_args = [
"-s",
"-Wl,-z,noexecstack",
"-Wl,-z,relro",
"-Wl,-z,now",
"-Wl,--disable-new-dtags,--rpath"
]
try:
extra_compile_args += [
'-D__FILENAME__=\"$$(notdir $$(abspath $$<))\"'
]
torch_npu_path = importlib.util.find_spec('torch_npu').submodule_search_locations[0]
extra_compile_args += [
'-I' + os.path.join(torch_npu_path, 'include', 'third_party', 'acl', 'inc')
]
except Exception as e:
raise ImportError('can not find any torch_npu') from e
sources = [os.path.join(extensions_dir, s) for s in sources]
include_dirs = [extensions_dir, '*.hpp']
ext_modules = [
extension(
'torchvision_npu._C',
sorted(sources),
include_dirs=include_dirs,
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args
)
]
return ext_modules
package_name = os.environ.get('TORCHVISION_NPU_PACKAGE_NAME', 'torchvision_npu')
setup(name=package_name,
version=__vision__,
description='NPU bridge for Torchvision',
packages=find_packages(),
package_data={package_name: ['lib/*.so', '*.so']},
ext_modules=get_extensions(),
cmdclass={"build_ext": BuildExtension.with_options(no_python_abi_suffix=True)}
)
Python
1
https://gitee.com/wang-guangbin/vision.git
git@gitee.com:wang-guangbin/vision.git
wang-guangbin
vision
vision
v0.9.1-dev

搜索帮助