Skip to content

[UR] [CUDA] Changed the output of querying localMemSize #11454

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

Merged
Merged
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
12 changes: 6 additions & 6 deletions sycl/plugins/unified_runtime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ if(SYCL_PI_UR_USE_FETCH_CONTENT)
include(FetchContent)

set(UNIFIED_RUNTIME_REPO "https://github.com/oneapi-src/unified-runtime.git")
# commit ba994bb401aefad3631012d592be672f6ea0e23b
# Merge: be53fb3b f2a365ca
# commit 0e24ab8d136978d984be9e8cba34e23b4fbcf37c
# Merge: a62423d d5a4691
# Author: Kenneth Benzie (Benie) <[email protected]>
# Date: Fri Nov 3 11:09:52 2023 +0000
# Merge pull request #968 from martygrant/martin/versionCheckSpecializationConstants
# [OpenCL] Add version check for urProgramSetSpecializationConstants
set(UNIFIED_RUNTIME_TAG ba994bb401aefad3631012d592be672f6ea0e23b)
# Date: Mon Nov 6 11:42:03 2023 +0000
# Merge pull request #931 from konradkusiak97/konradkusiak/LocalMemSizeQuery
# [UR] [CUDA] Changed the output of querying localMemSize
set(UNIFIED_RUNTIME_TAG 0e24ab8d136978d984be9e8cba34e23b4fbcf37c)

if(SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO)
set(UNIFIED_RUNTIME_REPO "${SYCL_PI_UR_OVERRIDE_FETCH_CONTENT_REPO}")
Expand Down
2 changes: 1 addition & 1 deletion sycl/test-e2e/Plugin/cuda-max-local-mem-size.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ int main() {
});
}).wait();
// CHECK-ZERO: Local memory for kernel exceeds the amount requested using SYCL_PI_CUDA_MAX_LOCAL_MEM_SIZE
// CHECK-OVERALLOCATE: Too much local memory allocated for device
// CHECK-OVERALLOCATE: Excessive allocation of local memory on the device
}