File tree Expand file tree Collapse file tree 5 files changed +18
-4
lines changed
layers/validation/checkers/certification Expand file tree Collapse file tree 5 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Level zero loader changelog
2
+ ## v1.23.2
3
+ * fix: Avoid invalid casting into loader objects when DDI extension is supported
4
+ * Fix potential SIOF issue with checker layers
2
5
## v1.23.1
3
6
* Fix Sysman only DDI Init for zesDriver compatability
4
7
## v1.23.0
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if(MSVC AND (MSVC_VERSION LESS 1900))
13
13
endif ()
14
14
15
15
# This project follows semantic versioning (https://semver.org/)
16
- project (level-zero VERSION 1.23.1 )
16
+ project (level-zero VERSION 1.23.2 )
17
17
18
18
include (GNUInstallDirs )
19
19
Original file line number Diff line number Diff line change 1
- 1.23.1
2
- fd1c864d-4ba3-4321-bdfc-66f50cf6b6bf
1
+ 1.23.2
2
+ 7a2306e5-ca56-4ead-9c90-28db3a445afd
Original file line number Diff line number Diff line change @@ -166,6 +166,17 @@ namespace driver
166
166
return ZE_RESULT_SUCCESS;
167
167
};
168
168
169
+ // ////////////////////////////////////////////////////////////////////////
170
+ zeDdiTable.CommandList .pfnCreateImmediate = [](
171
+ ze_context_handle_t ,
172
+ ze_device_handle_t ,
173
+ const ze_command_queue_desc_t * desc,
174
+ ze_command_list_handle_t * phCommandListImmediate )
175
+ {
176
+ *phCommandListImmediate = reinterpret_cast <ze_command_list_handle_t >(context.get ());
177
+ return ZE_RESULT_SUCCESS;
178
+ };
179
+
169
180
// ////////////////////////////////////////////////////////////////////////
170
181
zeDdiTable.CommandQueue .pfnCreate = [](
171
182
ze_context_handle_t ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ certificationChecker::certificationChecker() {
38
38
certification_checker.zeValidation = zeChecker;
39
39
certification_checker.zetValidation = zetChecker;
40
40
certification_checker.zesValidation = zesChecker;
41
- validation_layer::context.validationHandlers .push_back (
41
+ validation_layer::context.getInstance (). validationHandlers .push_back (
42
42
&certification_checker);
43
43
}
44
44
}
You can’t perform that action at this time.
0 commit comments