Add full SYCL support for Windows builds#7513
Open
Copilot wants to merge 14 commits into
Open
Conversation
…a, xpu] and setup oneAPI 2025.3.1
…imize python DLL loading logic, and fix typos
…OOT env, and add wheel-finding error checks
|
Thanks for submitting this pull request! The maintainers of this repository would appreciate if you could update the CHANGELOG.md based on your changes. |
Copilot created this pull request from a session on behalf of
ssheorey
June 12, 2026 23:52
View session
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Type
Motivation and Context
Adds full Windows SYCL support to align with PyTorch 2025.3.1 (oneAPI 2025.3.1). Migrates the Windows CI matrix from CUDA ON/OFF to target
cpu,cuda, andxpu(SYCL), enablingopen3d_xpuPython wheels and C++ binary distributions with SYCL acceleration on Windows.Checklist:
python util/check_style.py --applyto apply Open3D code style to my code.Description
CMake & Build Infrastructure
BUILD_SYCL_MODULEinCMakeLists.txtto support Windows builds.-syclto the packaged distribution name incmake/Open3DPackaging.cmakewhen built with SYCL.open3d/xpuincpp/pybind/CMakeLists.txtand updatedcpp/pybind/make_python_package.cmaketo bundle thexpudirectory structure.Python Runtime & DLL Loading
python/open3d/__init__.pyto locate and load Intel compiler, oneMKL, and oneTBB redistributable DLL directories. Resolves the runtime directories dynamically usingONEAPI_ROOT(or default paths) withos.add_dll_directoryto prevent DLL loading errors on Python 3.8+.xpusubmodule when running on a SYCL-enabled (xpu) binary.GHA Windows CI / CD Matrix
.github/workflows/windows.ymlfromBUILD_CUDA_MODULE: [ON, OFF]todevice: [cpu, cuda, xpu].xpu.-T "Intel(R) oneAPI DPC++ Compiler"and search forOpenCLdynamically.