Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit a8ceb6c

Browse files
committed
clang format
Signed-off-by: Sergey V Maslov <[email protected]>
1 parent a49d9f6 commit a8ceb6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

SYCL/Plugin/interop-level-zero.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ int main() {
2727
// Create native Level-Zero context.
2828
// It then will be owned/destroyed by SYCL RT.
2929
ze_context_handle_t ZeContextInterop{};
30-
ze_context_desc_t ZeContextDesc =
31-
{ZE_STRUCTURE_TYPE_CONTEXT_DESC, nullptr, 0};
30+
ze_context_desc_t ZeContextDesc = {ZE_STRUCTURE_TYPE_CONTEXT_DESC, nullptr,
31+
0};
3232
zeContextCreate(ZePlatform, &ZeContextDesc, &ZeContextInterop);
3333

3434
// Re-create SYCL objects from native Level Zero handles
3535
auto PlatformInterop = level_zero::make<platform>(ZePlatform);
3636
auto DeviceInterop = level_zero::make<device>(PlatformInterop, ZeDevice);
37-
auto ContextInterop =
38-
level_zero::make<context>(PlatformInterop.get_devices(), ZeContextInterop);
37+
auto ContextInterop = level_zero::make<context>(PlatformInterop.get_devices(),
38+
ZeContextInterop);
3939
auto QueueInterop = level_zero::make<queue>(ContextInterop, ZeQueue);
4040

4141
// Check native handles

0 commit comments

Comments
 (0)