mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
68 lines
1.8 KiB
Python
68 lines
1.8 KiB
Python
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
||
|
|
# All rights reserved.
|
||
|
|
# This source code is licensed under the license found in the
|
||
|
|
# LICENSE file in the root directory of this source tree.
|
||
|
|
|
||
|
|
import distutils.command.clean
|
||
|
|
import shutil
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
|
||
|
|
|
||
|
|
|
||
|
|
ROOT_DIR = Path(__file__).parent
|
||
|
|
CSRC_DIR = ROOT_DIR / "python_agnostic" / "csrc"
|
||
|
|
|
||
|
|
|
||
|
|
class clean(distutils.command.clean.clean):
|
||
|
|
def run(self):
|
||
|
|
# Run default behavior first
|
||
|
|
distutils.command.clean.clean.run(self)
|
||
|
|
|
||
|
|
# Remove extension
|
||
|
|
for path in (ROOT_DIR / "python_agnostic").glob("**/*.so"):
|
||
|
|
path.unlink()
|
||
|
|
# Remove build and dist and egg-info directories
|
||
|
|
dirs = [
|
||
|
|
ROOT_DIR / "build",
|
||
|
|
ROOT_DIR / "dist",
|
||
|
|
ROOT_DIR / "python_agnostic.egg-info",
|
||
|
|
]
|
||
|
|
for path in dirs:
|
||
|
|
if path.exists():
|
||
|
|
shutil.rmtree(str(path), ignore_errors=True)
|
||
|
|
|
||
|
|
|
||
|
|
def get_extension():
|
||
|
|
extra_compile_args = {
|
||
|
|
"cxx": ["-fdiagnostics-color=always"],
|
||
|
|
}
|
||
|
|
|
||
|
|
sources = list(CSRC_DIR.glob("**/*.cu"))
|
||
|
|
|
||
|
|
return [
|
||
|
|
CUDAExtension(
|
||
|
|
"python_agnostic._C",
|
||
|
|
sources=sorted(str(s) for s in sources),
|
||
|
|
py_limited_api=True,
|
||
|
|
extra_compile_args=extra_compile_args,
|
||
|
|
extra_link_args=[],
|
||
|
|
)
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name="python_agnostic",
|
||
|
|
version="0.0",
|
||
|
|
author="PyTorch Core Team",
|
||
|
|
description="Example of python agnostic extension",
|
||
|
|
ext_modules=get_extension(),
|
||
|
|
cmdclass={
|
||
|
|
"build_ext": BuildExtension.with_options(no_python_abi_suffix=True),
|
||
|
|
"clean": clean,
|
||
|
|
},
|
||
|
|
options={"bdist_wheel": {"py_limited_api": "cp39"}},
|
||
|
|
)
|