File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Level zero loader changelog
2
-
3
2
## v1.14.0
4
3
* Update to spec 1.7.8
5
-
4
+ * Fix intercept layer access to array of handles and return of logs
5
+ * Enable All warnings and warnings as errors to cleanup code
6
+ * Add validation of module extended descriptor
7
+ * Add ZE_ENABLE_LOADER_DEBUG_TRACE for tracking Library Load/Unload errors
6
8
## v1.13.5
7
9
* Updated code generating scripts for updated spec and init functionality
8
10
* Change zeInit to only init on the first call in a process
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Level Zero Loader will read this environment settings when either `zeInit` or `z
17
17
By default, no validation modes will be enabled. The individual validation modes must be enabled with the following environment settings:
18
18
19
19
- ` ZE_ENABLE_PARAMETER_VALIDATION `
20
- - ` ZE_ENABLE_HANDLE_LIFETIME ` (Not yet Implemeneted)
20
+ - ` ZE_ENABLE_HANDLE_LIFETIME `
21
21
- ` ZE_ENABLE_MEMORY_TRACKER ` (Not yet Implemeneted)
22
22
- ` ZE_ENABLE_THREADING_VALIDATION ` (Not yet Implemeneted)
23
23
@@ -37,7 +37,7 @@ Parameter Validation mode maintains no internal state. It performs the followin
37
37
38
38
If a check fails, the appropriate error code is returned and the driver API is not called.
39
39
40
- ### ` ZE_ENABLE_HANDLE_LIFETIME ` (Not yet Implemeneted)
40
+ ### ` ZE_ENABLE_HANDLE_LIFETIME `
41
41
42
42
This mode maintains an internal mapping of each handle type to a state structure.
43
43
You can’t perform that action at this time.
0 commit comments