Skip to content

Commit b44bc43

Browse files
committed
Fix formatting using cppformat target
1 parent e4a8716 commit b44bc43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/adapters/level_zero/program.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,15 +1007,15 @@ ur_program_handle_t_::ur_program_handle_t_(ur_context_handle_t Context)
10071007
ur_program_handle_t_::ur_program_handle_t_(state, ur_context_handle_t Context,
10081008
ze_module_handle_t InteropZeModule)
10091009
: Context{Context}, NativeProperties{nullptr}, OwnZeModule{true},
1010-
AssociatedDevices({Context->getDevices()[0]}),
1011-
InteropZeModule{InteropZeModule} {}
1010+
AssociatedDevices({Context->getDevices()[0]}), InteropZeModule{
1011+
InteropZeModule} {}
10121012

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

0 commit comments

Comments
 (0)