setup.py 3.57 KB
Newer Older
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright 2021 AlQuraishi Laboratory
# Copyright 2021 DeepMind Technologies Limited
#
# 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.
15
16
17
18
import os
from setuptools import setup, Extension, find_packages
import subprocess

zhuww's avatar
zhuww committed
19
from torch.utils.cpp_extension import BuildExtension, CUDAExtension, ROCM_HOME
20

zhuww's avatar
zhuww committed
21
22
23
from typing import Optional, Union
import subprocess
from pathlib import Path
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
24

25
26
27
28
29
30
31
32

version_dependent_macros = [
    '-DVERSION_GE_1_1',
    '-DVERSION_GE_1_3',
    '-DVERSION_GE_1_5',
]

extra_cuda_flags = [
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
33
    '-std=c++14',
zhuww's avatar
zhuww committed
34
    #'-maxrregcount=50',
zhuwenwen's avatar
zhuwenwen committed
35
36
    '-U__CUDA_NO_HALF_OPERATORS__',
    '-U__CUDA_NO_HALF_CONVERSIONS__'
37
38
]

zhuwenwen's avatar
zhuwenwen committed
39
cc_flag = ['-DAMDGPU_TARGETS', 'gfx900;gfx906;gfx926']
40
41
42

extra_cuda_flags += cc_flag

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
43

zhuwenwen's avatar
zhuwenwen committed
44
def get_sha(root: Union[str, Path]) -> str:
zhuww's avatar
zhuww committed
45
    try:
zhuwenwen's avatar
zhuwenwen committed
46
        return subprocess.check_output(['git', 'rev-parse', 'HEAD'], cwd=root).decode('ascii').strip()
zhuww's avatar
zhuww committed
47
48
49
50
51
    except Exception:
        return 'Unknown'


def get_version_add(sha: Optional[str] = None) -> str:
zhuwenwen's avatar
zhuwenwen committed
52
    openfold_root = os.path.dirname(os.path.abspath(__file__))
zhuww's avatar
zhuww committed
53
54
55
    add_version_path = "version.py"
    if sha != 'Unknown':
        if sha is None:
zhuwenwen's avatar
zhuwenwen committed
56
            sha = get_sha(openfold_root)
zhuww's avatar
zhuww committed
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
        version = 'git' + sha[:7]

    if os.getenv('OPENFOLD_BUILD_VERSION'):
        version_dtk = os.getenv('OPENFOLD_BUILD_VERSION', "")
        version += "." + version_dtk

    with open(add_version_path, encoding="utf-8", mode="w") as file:
        file.write("__version__='1.0.1'+'+{}'\n".format(version))
    file.close()


def get_version():
    get_version_add()
    version_file = 'version.py'
    with open(version_file, encoding='utf-8') as f:
        exec(compile(f.read(), version_file, 'exec'))
    return locals()['__version__']

Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
75
76
setup(
    name='openfold',
zhuww's avatar
zhuww committed
77
    #version='1.0.1',
zhuwenwen's avatar
zhuwenwen committed
78
    version=get_version(),
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
79
    description='A PyTorch reimplementation of DeepMind\'s AlphaFold 2',
80
    author='Gustaf Ahdritz & DeepMind',
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
81
82
83
    author_email='gahdritz@gmail.com',
    license='Apache License, Version 2.0',
    url='https://github.com/aqlaboratory/openfold',
84
    packages=find_packages(exclude=["tests", "scripts"]),
zhuww's avatar
zhuww committed
85
    include_package_data=False,
86
87
88
89
90
91
92
93
94
95
96
97
    package_data={
        "openfold": ['utils/kernel/csrc/*'],
        "": ["resources/stereo_chemical_props.txt"]
    },
    ext_modules=[CUDAExtension(
        name="attn_core_inplace_cuda",
        sources=[
            "openfold/utils/kernel/csrc/softmax_cuda.cpp",
            "openfold/utils/kernel/csrc/softmax_cuda_kernel.cu",
        ],
        include_dirs=[
            os.path.join(
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
98
                os.path.dirname(os.path.abspath(__file__)),
99
100
101
102
103
                'openfold/utils/kernel/csrc/'
            )
        ],
        extra_compile_args={
            'cxx': ['-O3'] + version_dependent_macros,
zhuww's avatar
zhuww committed
104
            'hipcc': (
zhuwenwen's avatar
zhuwenwen committed
105
                ['-O3'] + version_dependent_macros + extra_cuda_flags
106
107
108
109
            ),
        }
    )],
    cmdclass={'build_ext': BuildExtension},
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
110
111
112
    classifiers=[
        'License :: OSI Approved :: Apache Software License',
        'Operating System :: POSIX :: Linux',
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
113
        'Programming Language :: Python :: 3.7,'
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
114
115
116
        'Topic :: Scientific/Engineering :: Artificial Intelligence',
    ],
)
Gustaf Ahdritz's avatar
Gustaf Ahdritz committed
117
118
119