Spaces:
Running
on
Zero
Running
on
Zero
File size: 857 Bytes
178f950 |
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 |
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact [email protected]
#
from setuptools import setup
from torch.utils.cpp_extension import CUDAExtension, BuildExtension
import os
os.path.dirname(os.path.abspath(__file__))
setup(
name="vox2seq",
packages=['vox2seq', 'vox2seq.pytorch'],
ext_modules=[
CUDAExtension(
name="vox2seq._C",
sources=[
"src/api.cu",
"src/z_order.cu",
"src/hilbert.cu",
"src/ext.cpp",
],
)
],
cmdclass={
'build_ext': BuildExtension
}
)
|