File tree 1 file changed +4
-4
lines changed
source/adapters/level_zero
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1007,15 +1007,15 @@ ur_program_handle_t_::ur_program_handle_t_(ur_context_handle_t Context)
1007
1007
ur_program_handle_t_::ur_program_handle_t_ (state, ur_context_handle_t Context,
1008
1008
ze_module_handle_t InteropZeModule)
1009
1009
: Context{Context}, NativeProperties{nullptr }, OwnZeModule{true },
1010
- AssociatedDevices ({Context->getDevices ()[0 ]}),
1011
- InteropZeModule{ InteropZeModule} {}
1010
+ AssociatedDevices ({Context->getDevices ()[0 ]}), InteropZeModule{
1011
+ InteropZeModule} {}
1012
1012
1013
1013
ur_program_handle_t_::ur_program_handle_t_ (state, ur_context_handle_t Context,
1014
1014
ze_module_handle_t InteropZeModule,
1015
1015
bool OwnZeModule)
1016
1016
: Context{Context}, NativeProperties{nullptr }, OwnZeModule{OwnZeModule},
1017
- AssociatedDevices ({Context->getDevices ()[0 ]}),
1018
- InteropZeModule{ InteropZeModule} {
1017
+ AssociatedDevices ({Context->getDevices ()[0 ]}), InteropZeModule{
1018
+ InteropZeModule} {
1019
1019
// TODO: Currently it is not possible to understand the device associated
1020
1020
// with provided ZeModule. So we can't set the state on that device to Exe.
1021
1021
}
You can’t perform that action at this time.
0 commit comments