-
Notifications
You must be signed in to change notification settings - Fork 790
Bump UR tag to include PrintTrace fix #14728
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,13 +115,14 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT) | |
CACHE PATH "Path to external '${name}' adapter source dir" FORCE) | ||
endfunction() | ||
|
||
set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git") | ||
# commit bc1a28ede0df7f837047b632e00437587672c134 | ||
set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git") | ||
# commit 3e762e00bcf13d158fb58e8e8c2eabcfc8934b4e | ||
# Merge: c805a71a a2a053de | ||
# Author: Omar Ahmed <[email protected]> | ||
# Date: Mon Jul 29 16:44:58 2024 +0100 | ||
# Merge pull request #1819 from DBDuncan/sean/rename-interop-to-external | ||
# [Bindless][Exp] Rename interop related structs/funcs with "external" | ||
set(UNIFIED_RUNTIME_TAG bc1a28ede0df7f837047b632e00437587672c134) | ||
# Date: Wed Jul 31 12:26:34 2024 +0100 | ||
# Merge pull request #1884 from callumfare/callum/fix_printtrace | ||
# Enable PrintTrace when SYCL UR tracing is enabled | ||
set(UNIFIED_RUNTIME_TAG 3e762e00bcf13d158fb58e8e8c2eabcfc8934b4e) | ||
|
||
set(UMF_BUILD_EXAMPLES OFF CACHE INTERNAL "EXAMPLES") | ||
# Due to the use of dependentloadflag and no installer for UMF and hwloc we need | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
// REQUIRES: gpu, level_zero | ||
// TODO: Reenable, see https://github.com/intel/llvm/issues/14721 | ||
// UNSUPPORTED: ze_debug, windows, linux | ||
// UNSUPPORTED: ze_debug | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not blocking the merge, but should this eventually be enabled? If so, please, create another issue for this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it was always like that, even before PI removal. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @steffenlarsen and/or @lbushi25 are working on an ongoing effort to review all |
||
|
||
// RUN: %{build} -o %t.ooo.out | ||
// RUN: %{build} -DUSING_INORDER -o %t.ino.out | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not to block the PR, but my opinion is that we shouldn't have tests relying on tracing in
e2e
tests. Those should instead be refactored to be unit-tests. I've highlighted this already in PI removal PR and I would be happy to contribute to such rewrite myself (if only I had some time for it, sigh).