-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1975 from Bensuo/fabio/immediate_append_exp
[Command-Buffers] Implement new command-list enqueue path
- Loading branch information
Showing
5 changed files
with
526 additions
and
142 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,8 +139,15 @@ Environment Variables | |
| UR_L0_DISABLE_USM_ALLOCATOR | Controls the use of the USM allocator. | "0": USM allocator is enabled. | "0" | | ||
| | | Any other value: USM allocator is disabled. | | | ||
+---------------------------------------------+--------------------------------------------------------------+--------------------------------------------------------------+------------------+ | ||
|
||
| UR_L0_CMD_BUFFER_USE_IMMEDIATE_APPEND_PATH | Controls which command-buffer implementation path is used. | "1": the immediate append path will always be enabled as | Unset | | ||
| | The paths rely on different APIs to enqueue command-buffers. | long as the pre-requisites are met. | | | ||
| | The immediate append path relies on | "0": the immediate append path will always be disabled. | | | ||
| | zeCommandListImmediateAppendCommandListsExp(). | "unset": The default behaviour will be used which enables | | | ||
| | The wait-event path relies on | the immediate append path only for some devices when the | | | ||
| | zeCommandQueueExecuteCommandLists() | pre-requisites are met. | | | ||
+---------------------------------------------+--------------------------------------------------------------+--------------------------------------------------------------+------------------+ | ||
Contributors | ||
------------ | ||
|
||
* Neil Spruit `[email protected] <[email protected]>`_ | ||
* Neil Spruit `[email protected] <[email protected]>`_ | ||
* Fábio Mestre `[email protected] <[email protected]>`_ |
Oops, something went wrong.