-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
133 lines (124 loc) · 4.28 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Copyright 2021 Google LLC
#
# 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.
import platform
from setuptools import setup, Extension
import glob
import pybind11
ALL_SOURCE_FILES = glob.glob("src/**/*.cc", recursive=True)
MUX_SOURCE_FILES = glob.glob("src/**/march.pybind.cc", recursive=True)
TEST_FILES = glob.glob("src/**/*.test.cc", recursive=True)
PERF_FILES = glob.glob("src/**/*.perf.cc", recursive=True)
MAIN_FILES = glob.glob("src/**/main.cc", recursive=True)
HEADER_FILES = glob.glob("src/**/*.h", recursive=True) + glob.glob("src/**/*.inl", recursive=True)
RELEVANT_SOURCE_FILES = sorted(set(ALL_SOURCE_FILES) - set(TEST_FILES + PERF_FILES + MAIN_FILES + MUX_SOURCE_FILES))
__version__ = '1.15.dev0'
if platform.system().startswith('Win'):
common_compile_args = [
'/std:c++20',
'/O2',
f'/DVERSION_INFO={__version__}',
]
arch_avx = ['/arch:AVX2']
arch_sse = ['/arch:SSE2']
arch_basic = []
else:
common_compile_args = [
'-std=c++20',
'-fno-strict-aliasing',
'-O3',
'-g0',
f'-DVERSION_INFO={__version__}',
]
arch_avx = ['-mavx2']
arch_sse = ['-msse2', '-mno-avx2']
arch_basic = []
stim_detect_machine_architecture = Extension(
'stim._detect_machine_architecture',
sources=MUX_SOURCE_FILES,
include_dirs=[pybind11.get_include(), "src"],
language='c++',
extra_compile_args=[
*common_compile_args,
*arch_basic,
],
)
stim_polyfill = Extension(
'stim._stim_polyfill',
sources=RELEVANT_SOURCE_FILES,
include_dirs=[pybind11.get_include(), "src"],
language='c++',
extra_compile_args=[
*common_compile_args,
*arch_basic,
'-DSTIM_PYBIND11_MODULE_NAME=_stim_polyfill',
],
)
stim_sse2 = Extension(
'stim._stim_sse2',
sources=RELEVANT_SOURCE_FILES,
include_dirs=[pybind11.get_include(), "src"],
language='c++',
extra_compile_args=[
*common_compile_args,
*arch_sse,
'-DSTIM_PYBIND11_MODULE_NAME=_stim_sse2',
],
)
# NOTE: disabled until https://github.com/quantumlib/Stim/issues/432 is fixed
# stim_avx2 = Extension(
# 'stim._stim_avx2',
# sources=RELEVANT_SOURCE_FILES,
# include_dirs=[pybind11.get_include(), "src"],
# language='c++',
# extra_compile_args=[
# *common_compile_args,
# *arch_avx,
# '-DSTIM_PYBIND11_MODULE_NAME=_stim_avx2',
# ],
# )
with open('glue/python/README.md', encoding='UTF-8') as f:
long_description = f.read()
def _get_extensions():
archs=["x86", "i686", "i386", "amd64"]
if any(_ext in platform.processor().lower() for _ext in archs):
# NOTE: disabled until https://github.com/quantumlib/Stim/issues/432 is fixed
# stim_avx2,
return [stim_detect_machine_architecture, stim_polyfill,
# stim_avx2,
stim_sse2]
else:
return [stim_detect_machine_architecture, stim_polyfill]
setup(
name='stim',
version=__version__,
author='Craig Gidney',
author_email='[email protected]',
url='https://github.com/quantumlib/stim',
license='Apache 2',
description='A fast library for analyzing with quantum stabilizer circuits.',
long_description=long_description,
long_description_content_type='text/markdown',
ext_modules=_get_extensions(),
python_requires='>=3.6.0',
packages=['stim'],
package_dir={'stim': 'glue/python/src/stim'},
package_data={'': [*HEADER_FILES, 'glue/python/src/stim/__init__.pyi', 'glue/python/README.md', 'pyproject.toml']},
include_package_data=True,
install_requires=['numpy'],
entry_points={
'console_scripts': ['stim=stim._main_argv:main_argv'],
},
# Needed on Windows to avoid the default `build` colliding with Bazel's `BUILD`.
options={'build': {'build_base': 'python_build_stim'}},
)