Skip to content

[SYCL][CI] run L0 v2 adapter tests on windows #19458

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: sycl
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sycl-windows-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
name: ${{ matrix.name }}
runner: ${{ matrix.runner }}
target_devices: "level_zero:gpu"
target_devices: "level_zero:gpu;level_zero_v2:gpu"
sycl_toolchain_archive: ${{ needs.build.outputs.artifact_archive_name }}
e2e_testing_mode: run-only
e2e_binaries_artifact: sycl_windows_e2ebin
3 changes: 3 additions & 0 deletions sycl/test-e2e/Adapters/level_zero/eager_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// UNSUPPORTED: ze_debug
// UNSUPPORTED-INTENDED: ze_debug UR emits summary of leaks that contains
// function names that we match in the test.
// UNSUPPORTED: level_zero_v2_adapter
// UNSUPPORTED-INTENDED: v2 adapter might create a command list for buffer
// copy

// RUN: %{build} -Wno-error=deprecated-declarations %level_zero_options -o %t.out
// RUN: env UR_L0_DEBUG=1 SYCL_EAGER_INIT=1 %{run} %t.out 2>&1 | FileCheck %s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
// for native L0 API calls.
// UNSUPPORTED: linux && gpu-intel-dg2 && run-mode && !igc-dev
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/18273
// UNSUPPORTED: level_zero_v2_adapter
// UNSUPPORTED-INTENDED: v2 adapter might not use host memory for integrated
// graphics
// RUN: %{build} %level_zero_options -o %t.out
// RUN: %{run} %t.out

Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/Adapters/max_malloc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
// RUN: env UR_L0_ENABLE_RELAXED_ALLOCATION_LIMITS=1 SYCL_PROGRAM_COMPILE_OPTIONS=-ze-intel-greater-than-4GB-buffer-required %{run} %t.out

// TODO: Temporarily disabled on Linux due to failures.
// UNSUPPORTED: linux
// UNSUPPORTED: linux, level_zero_v2_adapter
// TODO: https://github.com/intel/llvm/issues/19461

#include <iostream>
#include <sycl/detail/core.hpp>
Expand Down
3 changes: 2 additions & 1 deletion sycl/test-e2e/Basic/buffer/buffer_create.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// REQUIRES: gpu,level_zero,level_zero_dev_kit
// RUN: %{build} %level_zero_options -o %t.out
// RUN: env UR_L0_DEBUG=1 %{run} %t.out 2>&1 | FileCheck %s
// UNSUPPORTED: ze_debug
// UNSUPPORTED: ze_debug, level_zero_v2_adapter
// v2 adapter might not use host memory for integrated graphics

#include <iostream>
#include <level_zero/ze_api.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
// for native L0 API calls.
// UNSUPPORTED: linux && gpu-intel-dg2 && run-mode && !igc-dev
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/18273
// UNSUPPORTED: level_zero_v2_adapter
// UNSUPPORTED-INTENDED: v2 adapter might not use host memory for integrated
// graphics
// RUN: %{build} %level_zero_options -o %t.out
// RUN: %{run} %t.out

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
// for native L0 API calls.
// UNSUPPORTED: linux && gpu-intel-dg2 && run-mode && !igc-dev
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/18273
// UNSUPPORTED: level_zero_v2_adapter
// UNSUPPORTED-INTENDED: v2 adapter might not use host memory for integrated
// graphics
// RUN: %{build} %level_zero_options -o %t.out
// RUN: %{run} %t.out
// Extra run to check for immediate-command-list in Level Zero
Expand Down
Loading