Skip to content

Commit fd5a50a

Browse files
Unify 'Level Zero' spelling
It should be either 'L0' or 'Level Zero'
1 parent 8437b90 commit fd5a50a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

benchmark/ubench.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (C) 2023-2024 Intel Corporation
3+
* Copyright (C) 2023-2025 Intel Corporation
44
*
55
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
66
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -452,7 +452,7 @@ static int create_level_zero_params(ze_context_handle_t *context,
452452

453453
int ret = utils_ze_init_level_zero();
454454
if (ret != 0) {
455-
fprintf(stderr, "Failed to init Level 0!\n");
455+
fprintf(stderr, "Failed to init Level Zero!\n");
456456
return ret;
457457
}
458458

examples/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Intel Corporation
1+
# Copyright (C) 2024-2025 Intel Corporation
22
# Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44

@@ -154,7 +154,7 @@ if(UMF_BUILD_GPU_EXAMPLES
154154
else()
155155
message(
156156
STATUS
157-
"IPC Level 0 example requires UMF_BUILD_GPU_EXAMPLES, UMF_BUILD_LEVEL_ZERO_PROVIDER and UMF_BUILD_LIBUMF_POOL_DISJOINT to be turned ON - skipping"
157+
"IPC Level Zero example requires UMF_BUILD_GPU_EXAMPLES, UMF_BUILD_LEVEL_ZERO_PROVIDER and UMF_BUILD_LIBUMF_POOL_DISJOINT to be turned ON - skipping"
158158
)
159159
endif()
160160

examples/ipc_level_zero/ipc_level_zero.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (C) 2024 Intel Corporation
3+
* Copyright (C) 2024-2025 Intel Corporation
44
*
55
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
66
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -104,7 +104,7 @@ int main(void) {
104104
const size_t BUFFER_PATTERN = 0x42;
105105
int ret = init_level_zero();
106106
if (ret != 0) {
107-
fprintf(stderr, "ERROR: Failed to init Level 0!\n");
107+
fprintf(stderr, "ERROR: Failed to init Level Zero!\n");
108108
return ret;
109109
}
110110

examples/level_zero_shared_memory/level_zero_shared_memory.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
*
3-
* Copyright (C) 2024 Intel Corporation
3+
* Copyright (C) 2024-2025 Intel Corporation
44
*
55
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
66
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -27,7 +27,7 @@ int main(void) {
2727
// Initialize Level Zero
2828
int ret = init_level_zero();
2929
if (ret != 0) {
30-
fprintf(stderr, "Failed to init Level 0!\n");
30+
fprintf(stderr, "Failed to init Level Zero!\n");
3131
return ret;
3232
}
3333

test/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ if(LINUX
732732
else()
733733
message(
734734
STATUS
735-
"IPC Level 0 example requires UMF_BUILD_GPU_EXAMPLES, UMF_BUILD_LEVEL_ZERO_PROVIDER and UMF_BUILD_LIBUMF_POOL_DISJOINT to be turned ON - skipping"
735+
"IPC Level Zero example requires UMF_BUILD_GPU_EXAMPLES, UMF_BUILD_LEVEL_ZERO_PROVIDER and UMF_BUILD_LIBUMF_POOL_DISJOINT to be turned ON - skipping"
736736
)
737737
endif()
738738

0 commit comments

Comments
 (0)