-
Notifications
You must be signed in to change notification settings - Fork 52
[wip] Symm support #1922
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
base: main
Are you sure you want to change the base?
[wip] Symm support #1922
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request adds symmetric memory support for XPU devices. The implementation provides Level Zero-based memory allocation, inter-process communication (IPC), and symmetric memory management functionality.
- Adds Level Zero exception handling and dynamic library loading for XPU
- Implements XPU-specific symmetric memory allocator and memory management classes
- Provides IPC-based memory exchange mechanisms for multi-process communication
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 13 comments.
Show a summary per file
File | Description |
---|---|
ze_exception.hpp | Level Zero exception handling and dynamic library loading utilities |
XPUSymmetricMemoryTypes.hpp | Type definitions for XPU symmetric memory implementation |
XPUSymmetricMemoryUtils.hpp | Utility classes for symmetric memory operations and IPC communication |
XPUSymmetricMemoryUtils.cpp | Implementation of IPC channels and memory mapping utilities |
XPUSymmetricMemory.hpp | Main symmetric memory class declarations for XPU |
XPUSymmetricMemory.cpp | Implementation of XPU symmetric memory allocator and management |
ProcessGroupXCCL.cpp | Temporary workaround for barrier synchronization |
IPCExchange.hpp | Inter-process communication utilities for memory handle exchange |
world = tmp_world; | ||
initialized = true; | ||
} | ||
void allreduce(sycl::queue& queue, void* inout_buffer, uint32_t size) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need such APIs, please remove all allreduce
APIs in this file.
No description provided.