-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL] Fix group local memory sharing issue #3489
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
bader
merged 8 commits into
intel:sycl
from
mlychkov:private/mlychkov/fix_gv_creation_for_same_type
Apr 12, 2021
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
c019149
[SYCL] Fix group local memory sharing when opts disabled
mlychkov b3efac3
Rephrase TODO -> FIXME
mlychkov 20739b6
Add FE test
mlychkov 40b659d
Update BackendUtil.cpp
bader 9a30876
Update group-local-memory-inlining.cpp
bader 1d58659
Fix formatting.
bader fe78c89
Update group-local-memory.cpp
bader 5e3e47f
Turn back the first version of the fix.
mlychkov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,26 @@ | ||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice \ | ||
// RUN: -S -emit-llvm -mllvm -debug-pass=Structure -disable-llvm-passes \ | ||
// RUN: -o - %s 2>&1 | FileCheck %s | ||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice \ | ||
// RUN: -S -emit-llvm -mllvm -debug-pass=Structure -o - %s 2>&1 \ | ||
// RUN: | FileCheck %s | ||
// Check that SYCLLowerWGLocalMemory pass is added to the SYCL device | ||
// compilation pipeline with the inliner pass. | ||
|
||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice -emit-llvm \ | ||
// RUN: -mllvm -debug-pass=Structure %s -o - 2>&1 \ | ||
// RUN: | FileCheck %s | ||
// CHECK: Function Integration/Inlining | ||
// CHECK: Replace __sycl_allocateLocalMemory with allocation of memory in local address space | ||
|
||
// Check that AlwaysInliner pass is always run for compilation of SYCL device | ||
// target code, even if all optimizations are disabled. | ||
|
||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice -emit-llvm \ | ||
// RUN: -mllvm -debug-pass=Structure %s -o - -disable-llvm-passes 2>&1 \ | ||
// RUN: | FileCheck %s --check-prefix=CHECK-NOPASSES | ||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice -emit-llvm \ | ||
// RUN: -mllvm -debug-pass=Structure %s -o - -fno-sycl-early-optimizations 2>&1 \ | ||
// RUN: | FileCheck %s --check-prefix=CHECK-NOPASSES | ||
// CHECK-NOPASSES: Inliner for always_inline functions | ||
// CHECK-NOPASSES: Replace __sycl_allocateLocalMemory with allocation of memory in local address space | ||
|
||
// RUN: %clang_cc1 -fsycl-is-device -triple spir64-unknown-unknown-sycldevice -emit-llvm \ | ||
// RUN: -mllvm -debug-pass=Structure %s -o - -O0 2>&1 \ | ||
// RUN: | FileCheck %s --check-prefix=CHECK-O0opt | ||
// CHECK-O0opt: Inliner for always_inline functions | ||
// CHECK-O0opt: Replace __sycl_allocateLocalMemory with allocation of memory in local address space |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.