File tree Expand file tree Collapse file tree
layers/validation/checkers/certification Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Level zero loader changelog
22## v1.24.0
33* Enable DDI Driver Extension path by default.
4+ ## v1.23.2
5+ * fix: Avoid invalid casting into loader objects when DDI extension is supported
6+ * Fix potential SIOF issue with checker layers
47## v1.23.1
58* Fix Sysman only DDI Init for zesDriver compatability
69## v1.23.0
Original file line number Diff line number Diff line change @@ -166,6 +166,17 @@ namespace driver
166166 return ZE_RESULT_SUCCESS;
167167 };
168168
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+
169180 // ////////////////////////////////////////////////////////////////////////
170181 zeDdiTable.CommandQueue .pfnCreate = [](
171182 ze_context_handle_t ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ certificationChecker::certificationChecker() {
3838 certification_checker.zeValidation = zeChecker;
3939 certification_checker.zetValidation = zetChecker;
4040 certification_checker.zesValidation = zesChecker;
41- validation_layer::context.validationHandlers .push_back (
41+ validation_layer::context.getInstance (). validationHandlers .push_back (
4242 &certification_checker);
4343 }
4444}
You can’t perform that action at this time.
0 commit comments