-
Notifications
You must be signed in to change notification settings - Fork 235
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
Add properties parameter to all command-buffer commands #260
Merged
Conversation
This file contains 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
EwanC
added a commit
to EwanC/OpenCL-CLHPP
that referenced
this pull request
Aug 15, 2024
Updates to compile with header change KhronosGroup/OpenCL-Headers#260
This was referenced Aug 15, 2024
EwanC
added a commit
to EwanC/OpenCL-CLHPP
that referenced
this pull request
Aug 15, 2024
Updates to compile with header change KhronosGroup/OpenCL-Headers#260
EwanC
added a commit
to EwanC/OpenCL-CLHPP
that referenced
this pull request
Aug 15, 2024
Updates to compile with header change KhronosGroup/OpenCL-Headers#260
EwanC
added a commit
to EwanC/OpenCL-CTS
that referenced
this pull request
Aug 15, 2024
Make changes to reflect OpenCL-Docs change KhronosGroup/OpenCL-Docs#1215 and requires header change KhronosGroup/OpenCL-Headers#260 to use preprocessor path with extra parameters
EwanC
added a commit
to EwanC/OpenCL-CTS
that referenced
this pull request
Aug 15, 2024
Make changes to reflect OpenCL-Docs change KhronosGroup/OpenCL-Docs#1215 and requires header change KhronosGroup/OpenCL-Headers#260 to use preprocessor path with extra parameters
EwanC
added a commit
to EwanC/OpenCL-CLHPP
that referenced
this pull request
Aug 16, 2024
Updates to compile with header change KhronosGroup/OpenCL-Headers#260
EwanC
commented
Sep 5, 2024
@@ -603,7 +623,7 @@ clRemapCommandBufferKHR( | |||
"cl_khr_command_buffer_mutable_dispatch" | |||
|
|||
|
|||
#define CL_KHR_COMMAND_BUFFER_MUTABLE_DISPATCH_EXTENSION_VERSION CL_MAKE_VERSION(0, 9, 1) | |||
#define CL_KHR_COMMAND_BUFFER_MUTABLE_DISPATCH_EXTENSION_VERSION CL_MAKE_VERSION(0, 9, 3) |
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.
#245 needs to merge first, otherwise we bump two patch versions
Header changes to reflect XML changes from KhronosGroup/OpenCL-Docs#1215 to address KhronosGroup/OpenCL-Docs#1207 A new `cl_command_properties_khr` properties parameter is added to all command recording entry-points, and the patch version is bumped.
EwanC
force-pushed
the
ewan/command_properties
branch
from
September 5, 2024 15:55
da8dc3b
to
dc2e46e
Compare
EwanC
added a commit
to EwanC/OpenCL-CTS
that referenced
this pull request
Sep 5, 2024
Make changes to reflect OpenCL-Docs change KhronosGroup/OpenCL-Docs#1215 and requires header change KhronosGroup/OpenCL-Headers#260 to use preprocessor path with extra parameters
bashbaug
approved these changes
Sep 6, 2024
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.
Merging as discussed in the September 3rd teleconference + email.
bashbaug
pushed a commit
to KhronosGroup/OpenCL-CLHPP
that referenced
this pull request
Sep 6, 2024
* Add properties parameter to all command-buffer commands Updates to compile with header change KhronosGroup/OpenCL-Headers#260 * Update to reflect CL_MUTABLE_COMMAND_PROPERTIES_ARRAY_KHR See KhronosGroup/OpenCL-Docs#1215 (comment)
EwanC
added a commit
to Bensuo/unified-runtime
that referenced
this pull request
Sep 16, 2024
Update OpenCL adapter code to reflect the 2 API breaking changes to the command-buffer family of extensions that have been made upstream: * [Add properties parameter to all command-buffer commands](KhronosGroup/OpenCL-Headers#260) * [Use array for clUpdateMutableCommandsKHR](KhronosGroup/OpenCL-Headers#245)
EwanC
added a commit
to Bensuo/unified-runtime
that referenced
this pull request
Sep 16, 2024
Update OpenCL adapter code to reflect the 2 API breaking changes to the command-buffer family of extensions that have been made upstream: * [Add properties parameter to all command-buffer commands](KhronosGroup/OpenCL-Headers#260) * [Use array for clUpdateMutableCommandsKHR](KhronosGroup/OpenCL-Headers#245)
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.
Header changes to reflect XML changes from KhronosGroup/OpenCL-Docs#1215 to address KhronosGroup/OpenCL-Docs#1207
A new
cl_command_properties_khr
properties parameter is added to all command recording entry-points, and the patch version is bumped.