Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Windows builds to use ClangCL #549

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft

Update Windows builds to use ClangCL #549

wants to merge 5 commits into from

Conversation

zanieb
Copy link
Member

@zanieb zanieb commented Mar 4, 2025

Adding the flag as described in python/cpython#129907

ClangCL looks to provide a 20% runtime performance and build times were purportedly better as well.

This also would let us turn on the tail-calling interpreter for another 10% performance boost.

@zanieb zanieb added the ci:skip label Mar 4, 2025
@@ -653,6 +653,9 @@ def run_msbuild(
# This can also work around known incompatibilities with the Windows 11
# SDK as of at least CPython 3.9.7.
f"/property:DefaultWindowsSDKVersion={windows_sdk_version}",
# Use ClangCL for better build and runtime performance
# https://github.com/python/cpython/issues/130090
"/p:PlatformToolset=ClangCL",
Copy link

@Fidget-Spinner Fidget-Spinner Mar 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably should guard only on 3.14. (It's the first version with Clang PGO, that will guarantee better performance).

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, requires python/cpython#130040 to pass on CI. For some reason there's a one line patch required.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you are using clang versions below 19, this will furthermore need a fix for python/cpython#130213, due to the problems with intrinsics.

Copy link
Member Author

@zanieb zanieb Mar 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're using LLVM 19 here (and presumably 20 soon — #553) actually, realized we're only setting up a LLVM toolchain on Unix right now. I will look into the version we're using on Windows.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should teach the build system to pull a pre-built LLVM toolchain from somewhere. The official releases from e.g. https://github.com/llvm/llvm-project/releases/tag/llvmorg-20.1.0 should be fine.

If we use the toolchain built into the GitHub Actions Runner, it will randomly be updated out from under us. Given some sensitivity we've seen around LLVM versions lately, this spooky-action-at-a-distance will likely randomly cause CI to fail.

Best to make CI as deterministic and reproducible as possible.

@zanieb
Copy link
Member Author

zanieb commented Mar 5, 2025

The latest benchmark is at python/cpython#129907 (comment) which shows some regressions, but an average 19% improvement.

@zanieb
Copy link
Member Author

zanieb commented Mar 18, 2025

Interesting, it failed with

cpython>        (ClCompile target) ->
cpython>          C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include\vcruntime.h(188,30): error : typedef redefinition with different types ('unsigned long long' vs 'unsigned int') [C:\Users\RUNNER~1\AppData\Local\Temp\python-build-73gmp1o2\Python-3.14.0a6\PCbuild\pythoncore.vcxproj]
cpython>          C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\lib\clang\19\include\__stddef_ptrdiff_t.h(18,26): error : typedef redefinition with different types ('int' vs 'long long') [C:\Users\RUNNER~1\AppData\Local\Temp\python-build-73gmp1o2\Python-3.14.0a6\PCbuild\pythoncore.vcxproj]
cpython>          C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include\vcruntime.h(188,30): error : typedef redefinition with different types ('unsigned long long' vs 'unsigned int') [C:\Users\RUNNER~1\AppData\Local\Temp\python-build-73gmp1o2\Python-3.14.0a6\PCbuild\pythoncore.vcxproj]
cpython>          C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\lib\clang\19\include\__stddef_ptrdiff_t.h(18,26): error : typedef redefinition with different types ('int' vs 'long long') [C:\Users\RUNNER~1\AppData\Local\Temp\python-build-73gmp1o2\Python-3.14.0a6\PCbuild\pythoncore.vcxproj]

@chris-eibl
Copy link

AFAIR this means it is compiling in 323bit mode. Try adding -m64.

See python/cpython@263870d.

Interesting, according to python/cpython@d8a1cf4 this should be part of v3.14.0a6

@chris-eibl
Copy link

But I see it is passed e.g. here:

-flto=thin -m64 -Wno-deprecated-non-prototype -Wno-unused-label -Wno-pointer-sign -Wno-incompatible-pointer-types-discards-qualifiers -Wno-unused-function  "..\Modules\_heapqmodule.c"

but not here

 /Z7 /nologo /W3 /WX- /diagnostics:column /O2 /Oi /D HACL_CAN_COMPILE_VEC256 /D _Py_HAVE_ZLIB /D _USRDLL /D Py_BUILD_CORE /D Py_BUILD_CORE_BUILTIN /D Py_ENABLE_SHARED /D "MS_DLL_ID=\"3.14\"" /D _Py_USING_PGO=1 /D WIN32 /D "PY3_DLLNAME=L\"python3\"" /D _WIN64 /D NDEBUG /D PyStats /D _WINDLL /GF /MD /GS /Gy /fp:precise /Fo"C:\Users\RUNNER~1\AppData\Local\Temp\python-build-2aa_wvqi\Python-3.14.0a6\PCbuild\obj\314amd64_PGInstrument\pythoncore\\" /Gd /TC /arch:AVX2 ..\Modules\_hacl\Hacl_Hash_Blake2b_Simd256.c

But in the line above for \Hacl_Hash_Blake2s.c all the clang stuff is present like for _heapqmodule.c above :-o

@chris-eibl
Copy link

Try adding "/p:PreferredToolArchitecture=x64". Before python/cpython@263870d that was the trick that did it for me. Maybe it is still needed, although I back then did not need it anymore. That was a back and forth.

I will re-investigate ...

@zanieb
Copy link
Member Author

zanieb commented Mar 18, 2025

We also do some non-standard things (like, we hack the project files), so it's possible it's a problem there.

@chris-eibl
Copy link

Interestingly, I can reproduce on cpython main and alpha6. I cannot build without "/p:PreferredToolArchitecture=x64" anymore, too.
Weird, but I have an idea.

Need some sleep though now :)

@zanieb
Copy link
Member Author

zanieb commented Mar 18, 2025

Cool that gets us to

cpython> copying C:\Users\RUNNER~1\AppData\Local\Temp\python-build-hctl79hu\Python-3.14.0a6\PCbuild\amd64\python314.exp
Traceback (most recent call last):
  File "C:\a\python-build-standalone\python-build-standalone\cpython-windows\build.py", line 1816, in <module>
    sys.exit(main())
             ^^^^^^
  File "C:\a\python-build-standalone\python-build-standalone\cpython-windows\build.py", line 1790, in main
    tar_path = build_cpython(
               ^^^^^^^^^^^^^^
  File "C:\a\python-build-standalone\python-build-standalone\cpython-windows\build.py", line 1524, in build_cpython
    build_info = collect_python_build_artifacts(
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\a\python-build-standalone\python-build-standalone\cpython-windows\build.py", line 1079, in collect_python_build_artifacts
    shutil.copyfile(source, dest)
  File "C:\hostedtoolcache\windows\Python\3.12.9\x64\Lib\shutil.py", line 260, in copyfile
    with open(src, 'rb') as fsrc:
         ^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\python-build-hctl79hu\\Python-3.14.0a6\\PCbuild\\amd64\\python314.exp'

which is from the copy at

exts = ("lib", "exp")
for ext in exts:
source = outputs_path / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
dest = core_dir / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
log("copying %s" % source)
shutil.copyfile(source, dest)

I presume this file is not produced upstream as well? I don't know if it's of consequence — I'm woefully lacking in knowledge of .exp files / Windows dynamic linking details.

@chris-eibl
Copy link

Ok, I've dug deeper this time - please see python/cpython#131473 for details.

Regarding the *.exp file: most probably the gold linker does not write that, I did not find anything in the net, yet. Don't know whether this is a clang-cl compatibility issue or a wrong switch, etc, in the cPython build.

@zanieb
Copy link
Member Author

zanieb commented Mar 19, 2025

A nice improvement in build times

@Fidget-Spinner
Copy link

Tail calling for Windows clangcl has been merged https://github.com/python/cpython/pull/130040/files#diff-4295039788386c2986b811f2a6b59cf088be59822b24b4f1243c9e9b184f65fbR109

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
platform:windows Specific to the Windows platform python:3.14
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants