Skip to content

[SYCL] Bump native enqueue extension version #18321

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

Merged
merged 1 commit into from
May 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@ implementation supports.
|Description

|1
|The APIs of this experimental extension are not versioned, so the
feature-test macro always has this value.
|Initial version defining `handler::ext_codeplay_enqueue_native_command()`.

|2
|Addition of `interop_handler` methods for `sycl_ext_oneapi_graph` integration.
|===

=== Additions to handler class
Expand Down Expand Up @@ -192,6 +194,11 @@ This section defines the interaction with the
link:../experimental/sycl_ext_oneapi_graph.asciidoc[sycl_ext_oneapi_graph]
extension.

The APIs defined in this section of the extension specification are only
available from version 2 of the extension. Usage of the APIs can be guarded in
user code by checking the value of the <<feature-test-macro,
feature test macro>>.

The `interopCallable` object will be invoked during `command_graph::finalize()`
when the backend object for the graph is available to give to the user as a
handle. The user may then add nodes using native APIs to the backend graph
Expand Down
2 changes: 1 addition & 1 deletion sycl/source/feature_test.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ inline namespace _V1 {
#define SYCL_EXT_ONEAPI_ENQUEUE_FUNCTIONS 1
#define SYCL_EXT_ONEAPI_RAW_KERNEL_ARG 1
#define SYCL_EXT_ONEAPI_PROFILING_TAG 1
#define SYCL_EXT_ONEAPI_ENQUEUE_NATIVE_COMMAND 1
#define SYCL_EXT_ONEAPI_ENQUEUE_NATIVE_COMMAND 2
#define SYCL_EXT_ONEAPI_GET_KERNEL_INFO 1
#define SYCL_EXT_ONEAPI_WORK_GROUP_MEMORY 1
#define SYCL_EXT_ONEAPI_WORK_GROUP_SCRATCH_MEMORY 1
Expand Down
Loading