mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-08 01:40:48 -04:00
95ab6ed79c
common cases are a bit faster overall
Python version
| | python opt | python main | py opt / main |
| -------------------- | ---------- | ----------- | ------------- |
| base_row_new | 0.84959 | 0.86417 | 0.9831283197 |
| row_new | 0.85698 | 0.85543 | 1.001811954 |
| base_row_new_proc | 2.77489 | 2.81795 | 0.9847193882 |
| row_new_proc | 2.77881 | 2.86206 | 0.9709125595 |
| brow_new_proc_none | 1.6311 | 1.65773 | 0.9839358641 |
| row_new_proc_none | 1.65048 | 1.69896 | 0.9714648962 |
| row_dumps | 0.15279 | 0.14519 | 1.052345203 |
| row_loads | 0.91471 | 0.91358 | 1.001236892 |
| row_values_impl | 0.1818 | 0.17773 | 1.022899904 |
| row_iter | 0.44042 | 0.4554 | 0.967105841 |
| row_len | 0.13858 | 0.13079 | 1.059561129 |
| row_hash | 0.28614 | 0.29172 | 0.9808720691 |
| getitem | 0.23159 | 0.23138 | 1.000907598 |
| getitem_slice | 0.38393 | 0.38765 | 0.9904037147 |
| get_by_key | 0.33692 | 0.33913 | 0.993483325 |
| get_by_key2 | 0.35105 | 0.33915 | 1.035087719 |
| getattr | 0.46809 | 0.46911 | 0.9978256699 |
| get_by_key_recreate | 1.08137 | 1.18224 | 0.9146789146 |
| get_by_key_recreate2 | 0.98543 | 0.99272 | 0.9926565396 |
| getattr_recreate | 0.74 | 0.7407 | 0.999054948 |
| contains | 0.49312 | 0.74477 | 0.6621104502 |
Cython version
| | cython opt | cython main | cy opt / main |
| -------------------- | ---------- | ----------- | ------------- |
| base_row_new | 0.12933 | 0.1347 | 0.9601336303 |
| row_new | 0.15755 | 0.16489 | 0.9554854752 |
| base_row_new_proc | 0.87398 | 1.08483 | 0.8056377497 |
| row_new_proc | 0.88592 | 1.13255 | 0.7822347799 |
| brow_new_proc_none | 0.2664 | 0.41703 | 0.6388029638 |
| row_new_proc_none | 0.27526 | 0.42483 | 0.6479297601 |
| row_dumps | 0.37526 | 0.20093 | 1.867615588 |
| row_loads | 0.53037 | 0.3607 | 1.470390907 |
| row_values_impl | 0.36886 | 0.22218 | 1.660185435 |
| row_iter | 0.25249 | 0.25553 | 0.9881031581 |
| row_len | 0.05194 | 0.05412 | 0.9597191426 |
| row_hash | 0.18864 | 0.18726 | 1.007369433 |
| getitem | 0.13876 | 0.13934 | 0.9958375197 |
| getitem_slice | 0.23181 | 0.2318 | 1.000043141 |
| get_by_key | 0.17031 | 0.17857 | 0.9537436299 |
| get_by_key2 | 0.58172 | 0.31651 | 1.837919813 |
| getattr | 0.21275 | 1.16669 | 0.1823534958 |
| get_by_key_recreate | 0.80161 | 0.8836 | 0.9072091444 |
| get_by_key_recreate2 | 1.14649 | 0.98709 | 1.161484768 |
| getattr_recreate | 0.55927 | 1.09921 | 0.5087926784 |
| contains | 0.35338 | 0.5494 | 0.6432107754 |
Closes: #12919
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/12919
Pull-request-sha: b13204b741
Change-Id: I5ff2b951f9840e99abdad3ae286ecb8becc70e4b
97 lines
2.6 KiB
Python
97 lines
2.6 KiB
Python
from __future__ import annotations
|
|
|
|
import os
|
|
import platform
|
|
import sys
|
|
from typing import Any
|
|
from typing import cast
|
|
from typing import Dict
|
|
from typing import TYPE_CHECKING
|
|
|
|
from setuptools import setup
|
|
|
|
if TYPE_CHECKING:
|
|
from setuptools import Extension
|
|
|
|
try:
|
|
from Cython.Build import build_ext as _cy_build_ext
|
|
from Cython.Distutils.extension import Extension as _cy_Extension
|
|
|
|
HAS_CYTHON = True
|
|
except ImportError:
|
|
_cy_build_ext = _cy_Extension = None
|
|
HAS_CYTHON = False
|
|
|
|
IS_CPYTHON = platform.python_implementation() == "CPython"
|
|
DISABLE_EXTENSION = bool(os.environ.get("DISABLE_SQLALCHEMY_CEXT"))
|
|
REQUIRE_EXTENSION = bool(os.environ.get("REQUIRE_SQLALCHEMY_CEXT"))
|
|
|
|
if DISABLE_EXTENSION and REQUIRE_EXTENSION:
|
|
raise RuntimeError(
|
|
"Cannot set both 'DISABLE_SQLALCHEMY_CEXT' and "
|
|
"'REQUIRE_SQLALCHEMY_CEXT' environment variables"
|
|
)
|
|
|
|
# when adding a cython module, also update the imports in _has_cython
|
|
# it is tested in test_setup_defines_all_files
|
|
CYTHON_MODULES = (
|
|
"engine._processors_cy",
|
|
"engine._row_cy",
|
|
"engine._util_cy",
|
|
"sql._util_cy",
|
|
"util._collections_cy",
|
|
"util._immutabledict_cy",
|
|
)
|
|
|
|
if HAS_CYTHON and IS_CPYTHON and not DISABLE_EXTENSION:
|
|
assert _cy_Extension is not None
|
|
assert _cy_build_ext is not None
|
|
from Cython.Compiler import Options
|
|
|
|
Options.docstrings = False
|
|
Options.clear_to_none = False
|
|
|
|
cython_directives: Dict[str, Any] = {
|
|
"language_level": "3",
|
|
# "initializedcheck": False,
|
|
}
|
|
|
|
if sys.version_info >= (3, 13):
|
|
cython_directives["freethreading_compatible"] = True
|
|
|
|
module_prefix = "sqlalchemy."
|
|
source_prefix = "lib/sqlalchemy/"
|
|
|
|
ext_modules = cast(
|
|
"list[Extension]",
|
|
[
|
|
_cy_Extension(
|
|
f"{module_prefix}{module}",
|
|
sources=[f"{source_prefix}{module.replace('.', '/')}.py"],
|
|
cython_directives=cython_directives,
|
|
optional=not REQUIRE_EXTENSION,
|
|
)
|
|
for module in CYTHON_MODULES
|
|
],
|
|
)
|
|
|
|
cmdclass = {"build_ext": _cy_build_ext}
|
|
|
|
elif REQUIRE_EXTENSION:
|
|
reasons = []
|
|
if not HAS_CYTHON:
|
|
reasons.append("Cython is missing")
|
|
if not IS_CPYTHON:
|
|
reasons.append("Not CPython, build is supported only on it")
|
|
raise RuntimeError(
|
|
"Cython extension build is required because REQUIRE_SQLALCHEMY_CEXT "
|
|
f"is set but it was deselected because: {'; '.join(reasons)}; "
|
|
"will not degrade to pure python install"
|
|
)
|
|
|
|
else:
|
|
ext_modules = []
|
|
cmdclass = {}
|
|
|
|
setup(cmdclass=cmdclass, ext_modules=ext_modules)
|