Skip to content

Commit 22ee01e

Browse files
committed
Update "plugin" references in e2e tests
1 parent 8b3a486 commit 22ee01e

29 files changed

+34
-33
lines changed

sycl/test-e2e/Adapters/dll-detach-order.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// REQUIRES: windows
22
// RUN: env SYCL_UR_TRACE=-1 sycl-ls | FileCheck %s
33

4-
// ensure that the plugins are detached AFTER urLoaderTearDown is done executing
4+
// ensure that the adapters are detached AFTER urLoaderTearDown is done
5+
// executing
56

67
// CHECK: ---> DLL_PROCESS_DETACH syclx.dll
78

sycl/test-e2e/Adapters/interop-level-zero-buffer-ownership.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: gpu, level_zero, level_zero_dev_kit
2-
// L0 plugin incorrectly reports memory leaks because it doesn't take into
2+
// L0 adapter incorrectly reports memory leaks because it doesn't take into
33
// account direct calls to L0 API.
44
// UNSUPPORTED: ze_debug
55
// RUN: %{build} %level_zero_options -o %t.out

sycl/test-e2e/Adapters/interop-level-zero-buffer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: level_zero, level_zero_dev_kit
2-
// L0 plugin incorrectly reports memory leaks because it doesn't take into
2+
// L0 adapter incorrectly reports memory leaks because it doesn't take into
33
// account direct calls to L0 API.
44
// UNSUPPORTED: ze_debug
55
// RUN: %{build} -Wno-error=deprecated-declarations %level_zero_options -o %t.out

sycl/test-e2e/Adapters/interop-level-zero-get-native-mem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: level_zero, level_zero_dev_kit
2-
// L0 plugin incorrectly reports memory leaks because it doesn't take into
2+
// L0 adapter incorrectly reports memory leaks because it doesn't take into
33
// account direct calls to L0 API.
44
// UNSUPPORTED: ze_debug
55
// RUN: %{build} %level_zero_options -o %t.out

sycl/test-e2e/Adapters/level_zero_batch_event_status.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// level_zero_batch_test.cpp
1010
//
11-
// This tests the level zero plugin's kernel batching code. It specifically
11+
// This tests the level zero adapter's kernel batching code. It specifically
1212
// tests that the current batch is submitted when an Event execution status
1313
// request is made. This test uses explicit SYCL_PI_LEVEL_ZERO_BATCH_SIZE=4
1414
// to make sure that the batching is submitted when the urEventGetInfo is

sycl/test-e2e/Adapters/level_zero_batch_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
// level_zero_batch_test.cpp
7575
//
76-
// This tests the level zero plugin's kernel batching code. The default
76+
// This tests the level zero adapter's kernel batching code. The default
7777
// batching is 4, and exact batch size can be controlled with environment
7878
// variable SYCL_PI_LEVEL_ZEOR+BATCH_SIZE=N.
7979
// This test enqueues 8 kernels and then does a wait. And it does this 3 times.

sycl/test-e2e/Adapters/level_zero_batch_test_copy_with_compute.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
// level_zero_batch_test_copy_with_compute.cpp
2828
//
29-
// This tests the level zero plugin's kernel batching code. The default
29+
// This tests the level zero adapter's kernel batching code. The default
3030
// batching is 4, and exact batch size can be controlled with environment
3131
// variable SYCL_PI_LEVEL_ZERO_{COPY_}BATCH_SIZE=N.
3232
// This test enqueues 8 kernels and then does a wait. And it does this 3 times.

sycl/test-e2e/Adapters/level_zero_dynamic_batch_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// level_zero_dynamic_batch_test.cpp
1414
//
15-
// This tests the level zero plugin's kernel dynamic batch size adjustment
15+
// This tests the level zero adapter's kernel dynamic batch size adjustment
1616
// code.
1717
// It starts out by enqueing 40 kernels before it does a wait, and it does
1818
// this 5 times. That should cause the dynamic batch size adjustment to

sycl/test-e2e/Adapters/level_zero_events_caching.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// CACHING-ENABLED: zeEventCreate = {{[1-9]}}
1414
// CACHING-DISABLED: zeEventCreate = 256
1515

16-
// Check event caching modes in the L0 plugin.
16+
// Check event caching modes in the L0 adapter.
1717

1818
#include <sycl/detail/core.hpp>
1919

sycl/test-e2e/Adapters/level_zero_imm_cmdlist_per_thread.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ int main() {
7474
// Create one queue
7575
auto D = Queue.get_device();
7676
const char *devType = D.is_cpu() ? "CPU" : "GPU";
77-
std::string pluginName = D.get_platform().get_info<info::platform::name>();
77+
std::string adapterName = D.get_platform().get_info<info::platform::name>();
7878
std::cout << "Running on device " << devType << " ("
79-
<< D.get_info<info::device::name>() << ") " << pluginName
80-
<< " plugin\n";
79+
<< D.get_info<info::device::name>() << ") " << adapterName
80+
<< " adapter\n";
8181

8282
// Use queue in multiple threads
8383
std::thread T1(run_sample, Queue, 0);

0 commit comments

Comments
 (0)