Skip to content

Commit 64baa31

Browse files
committed
Merge branch 'sycl' into sean/async-alloc-remove-unused-handler-members
2 parents 7f29b08 + a485cbf commit 64baa31

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

devops/scripts/benchmarks/utils/compute_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def build_igc(self, repo, commit):
9797
options.workdir,
9898
"vc-intrinsics",
9999
"https://github.com/intel/vc-intrinsics",
100-
"facb2076a2ce6cd6527c1e16570ba0fbaa2f1dba",
100+
"b980474c99859f7e4eb157828c5e80202b062177",
101101
)
102102
self.llvm_project = git_clone(
103103
options.workdir,

sycl/source/detail/queue_impl.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -870,10 +870,7 @@ class queue_impl {
870870
event finalizeHandlerPostProcess(
871871
HandlerType &Handler,
872872
const optional<SubmitPostProcessF> &PostProcessorFunc) {
873-
auto HandlerImpl = detail::getSyclObjImpl(Handler);
874-
const CGType Type = HandlerImpl->MCGType;
875-
876-
bool IsKernel = Type == CGType::Kernel;
873+
bool IsKernel = Handler.getType() == CGType::Kernel;
877874
bool KernelUsesAssert = false;
878875

879876
if (IsKernel)

sycl/test-e2e/Graph/Profiling/event_profiling_info.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// Extra run to check for immediate-command-list in Level Zero
77
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
88

9+
// UNSUPPORTED: level_zero_v2_adapter
10+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760
11+
912
// This test checks the profiling of an event returned
1013
// from graph submission with event::get_profiling_info().
1114
// It first tests a graph made exclusively of memory operations,

sycl/test-e2e/Graph/Profiling/event_profiling_info_usm.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
// Extra run to check for immediate-command-list in Level Zero
77
// RUN: %if level_zero %{env SYCL_PI_LEVEL_ZERO_USE_IMMEDIATE_COMMANDLISTS=1 %{l0_leak_check} %{run} %t.out 2>&1 | FileCheck %s --implicit-check-not=LEAK %}
88

9+
// UNSUPPORTED: level_zero_v2_adapter
10+
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17760
11+
912
// This test checks the profiling of an event returned
1013
// from graph submission with event::get_profiling_info().
1114
// It first tests a graph made exclusively of memory operations,
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
config.required_features += ['aspect-ext_oneapi_graph']
2+
# V2 does not have support for MCL yet
3+
config.unsupported_features += ['level_zero_v2_adapter']

sycl/test-e2e/Graph/lit.local.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# https://github.com/intel/llvm/issues/17165
22
if 'windows' in config.available_features:
33
config.unsupported_features += ['arch-intel_gpu_bmg_g21']
4-
config.unsupported_features += ['level_zero_v2_adapter']

0 commit comments

Comments
 (0)