Skip to content

Commit

Permalink
Fix formatting using cppformat target
Browse files Browse the repository at this point in the history
  • Loading branch information
againull committed Oct 10, 2024
1 parent e4a8716 commit b44bc43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/adapters/level_zero/program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1007,15 +1007,15 @@ ur_program_handle_t_::ur_program_handle_t_(ur_context_handle_t Context)
ur_program_handle_t_::ur_program_handle_t_(state, ur_context_handle_t Context,
ze_module_handle_t InteropZeModule)
: Context{Context}, NativeProperties{nullptr}, OwnZeModule{true},
AssociatedDevices({Context->getDevices()[0]}),
InteropZeModule{InteropZeModule} {}
AssociatedDevices({Context->getDevices()[0]}), InteropZeModule{
InteropZeModule} {}

ur_program_handle_t_::ur_program_handle_t_(state, ur_context_handle_t Context,
ze_module_handle_t InteropZeModule,
bool OwnZeModule)
: Context{Context}, NativeProperties{nullptr}, OwnZeModule{OwnZeModule},
AssociatedDevices({Context->getDevices()[0]}),
InteropZeModule{InteropZeModule} {
AssociatedDevices({Context->getDevices()[0]}), InteropZeModule{
InteropZeModule} {
// TODO: Currently it is not possible to understand the device associated
// with provided ZeModule. So we can't set the state on that device to Exe.
}
Expand Down

0 comments on commit b44bc43

Please sign in to comment.