Skip to content
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
2 changes: 1 addition & 1 deletion .github/intel-llvm-mirror-base-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20a7abc54985364a58a8a4ee455a02691168e86f
8c3711465b0d9bfdb72b3f406ee2d597e8c9293f
2 changes: 1 addition & 1 deletion cmake/FetchLevelZero.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if (NOT DEFINED LEVEL_ZERO_LIBRARY OR NOT DEFINED LEVEL_ZERO_INCLUDE_DIR)
set(UR_LEVEL_ZERO_LOADER_REPO "https://github.com/oneapi-src/level-zero.git")
endif()
if (UR_LEVEL_ZERO_LOADER_TAG STREQUAL "")
set(UR_LEVEL_ZERO_LOADER_TAG c182a1e4fc761f7cddb108df92dc6362c8aea6c0)
set(UR_LEVEL_ZERO_LOADER_TAG abc68a57e5d536a449a5e45f1aef85285fa70088)
endif()

# Disable due to a bug https://github.com/oneapi-src/level-zero/issues/104
Expand Down
69 changes: 37 additions & 32 deletions include/ur_api.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions include/ur_ddi.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions include/ur_print.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions scripts/core/EXP-BINDLESS-IMAGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ Changelog
+----------+-------------------------------------------------------------+
| 23.0 | Added BindlessImagesFreeMappedLinearMemory function. |
+----------+-------------------------------------------------------------+
| 24.0 || Update the ${x}BindlessImagesSampledImageCreateExp API |
| || to take a sampler description instead of sampler handle. |
+----------+-------------------------------------------------------------+

Contributors
--------------------------------------------------------------------------------
Expand All @@ -300,3 +303,4 @@ Contributors
* Chedy Najjar `[email protected] <[email protected]>`_
* Sean Stirling `[email protected] <[email protected]>`_
* Peter Zuzek `[email protected] [email protected] <[email protected]>`_
* Georgi Mirazchiyski `[email protected] <[email protected]>`_
14 changes: 9 additions & 5 deletions scripts/core/EXP-COMMAND-BUFFER.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ Command-Buffer Creation
--------------------------------------------------------------------------------

Command-Buffers are tied to a specific ${x}_context_handle_t and
${x}_device_handle_t. ${x}CommandBufferCreateExp optionally takes a descriptor
${x}_device_handle_t. ${x}CommandBufferCreateExp takes a descriptor
to provide additional properties for how the command-buffer should be
constructed. The members defined in ${x}_exp_command_buffer_desc_t are:

* ``isUpdatable``, which should be set to ``true`` to support :ref:`updating
command-buffer commands`.
* ``isInOrder``, which should be set to ``true`` to enable commands enqueued to
a command-buffer to be executed in an in-order fashion where possible.
* ``isInOrder``, which should be set to ``true`` to enforce commands appended
to a command-buffer to be executed in an in-order fashion.
* ``enableProfiling``, which should be set to ``true`` to enable profiling of
the command-buffer.

Expand Down Expand Up @@ -108,8 +108,9 @@ Sync-Points
A sync-point is a value which represents a command inside of a command-buffer
which is returned from command-buffer append function calls. These can be
optionally passed to these functions to define execution dependencies on other
commands within the command-buffer. Sync-points passed to functions may be
ignored if the command-buffer was created in-order.
commands within the command-buffer. Both wait-list and return sync-point
parameters to append functions are ignored if the command-buffer was created
with the in-order property.

Sync-points are unique and valid for use only within the command-buffer they
were obtained from.
Expand Down Expand Up @@ -550,6 +551,9 @@ Changelog
+-----------+-------------------------------------------------------+
| 1.11 | Support native commands. |
+-----------+-------------------------------------------------------+
| 1.12 | Strengthen in-order property such that sync-points |
| | parameters to append APIs are ignored. |
+-----------+-------------------------------------------------------+

Contributors
--------------------------------------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions scripts/core/exp-bindless-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@ name: SampledImageCreateExp
ordinal: "0"
analogue:
- "**cuTexObjectCreate**"
- "**hipTexObjectCreate**"
params:
- type: $x_context_handle_t
name: hContext
Expand All @@ -543,9 +544,9 @@ params:
- type: "const $x_image_desc_t*"
name: pImageDesc
desc: "[in] pointer to image description"
- type: $x_sampler_handle_t
name: hSampler
desc: "[in] sampler to be used"
- type: const $x_sampler_desc_t*
name: pSamplerDesc
desc: "[in] pointer to sampler description to be used"
- type: $x_exp_image_native_handle_t*
name: phImage
desc: "[out][alloc] pointer to handle of image object created"
Expand Down
Loading