Conversation
|
Thanks for submitting this pull request! The maintainers of this repository would appreciate if you could update the CHANGELOG.md based on your changes. |
… Registration, RGBDOdometry, TransformationConverter Co-authored-by: ssheorey <41028320+ssheorey@users.noreply.github.com>
…L declaration Co-authored-by: ssheorey <41028320+ssheorey@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add equivalent SYCL kernels for existing CUDA kernels
Add SYCL kernels for t/pipelines: Feature, FillInLinearSystem, Registration, RGBDOdometry, TransformationConverter
Feb 20, 2026
… to SYCL kernel files Co-authored-by: ssheorey <41028320+ssheorey@users.noreply.github.com>
Copilot
AI
changed the title
Add SYCL kernels for t/pipelines: Feature, FillInLinearSystem, Registration, RGBDOdometry, TransformationConverter
Add SYCL kernels for t/pipelines/kernel (Feature, FillInLinearSystem, Registration, RGBDOdometry, TransformationConverter)
Feb 23, 2026
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.
Ports all CUDA kernels in
cpp/open3d/t/pipelines/kernel/to SYCL 2020, enabling ICP registration, RGBD odometry, SLAC optimization, and FPFH feature computation on Intel GPUs via oneAPI.Type
Motivation and Context
Open3D had no SYCL equivalents for the CUDA kernels in
t/pipelines/kernel/, leaving Intel GPU users unable to run these pipelines on SYCL devices.Checklist:
python util/check_style.py --applyto apply Open3D code styleto my code.
updated accordingly.
results (e.g. screenshots or numbers) here.
Description
New SYCL implementation files
FeatureSYCL.cppFeatureCUDA.cuqueue.parallel_forFillInLinearSystemSYCL.cppFillInLinearSystemCUDA.cusycl::atomic_refRegistrationSYCL.cppRegistrationCUDA.cusycl::atomic_ref(replaces CUBBlockReduce)RGBDOdometrySYCL.cppRGBDOdometryCUDA.cusycl::atomic_ref(replaces CUBBlockReduce)TransformationConverterSYCL.cppTransformationConverter.cuqueue.single_taskAll reductions use
sycl::atomic_ref<T, memory_order::acq_rel, memory_scope::device>.Dispatch pattern
Each
*CPU/CUDAdispatch site gains anelse if (device.IsSYCL())branch under#ifdef BUILD_SYCL_MODULE, matching the existing CUDA pattern exactly:Build system
if(BUILD_SYCL_MODULE)inCMakeLists.txtusingopen3d_sycl_target_sources(not baretarget_sources) so they receive-fsycl -fsycl-targets=...per-file compile options — the CI failure from missing this was caught and fixed in the same PR.Code reuse
OPEN3D_SKIP_FPFH_MAIN/OPEN3D_SKIP_FILL_IN_LS_MAINguards in the shared*Impl.hheaders. SYCL files define these macros before inclusion to reuse only the helper templates, then define their own SYCL main functions.IndexGet,SVD,Matmul) which already dispatch to SYCL.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.