-
Notifications
You must be signed in to change notification settings - Fork 789
[SYCL][NVPTX] Do not decompose SYCL functor unless necessary #14434
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
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
db2f8c7
[SYCL][NVPTX] Do not decompose SYCL functor unless necessary
Naghasan 1aecb8b
"decompose" empty structs to avoid uneeded arguments
Naghasan 02e07ba
Update clang tests
Naghasan e95ad25
add decomp / no decomp flags, fix e2e test, add test
Naghasan f41f8f9
fix test
Naghasan 082de57
Merge branch 'sycl' into victor/kernel-blob
Naghasan dceb600
fix grid const test
Naghasan a9abeb3
apply feedbacks
Naghasan 5f864e5
Merge branch 'sycl' into victor/kernel-blob
Naghasan d7f7521
Flip make fsycl-decompose-functor the default and the no decompose op…
Naghasan 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// RUN: %clang_cc1 -fsycl-is-device -triple nvptx64-nvidia-cuda -ast-dump %s | FileCheck %s -check-prefix=ALL -check-prefix=DECOMP | ||
// RUN: %clang_cc1 -fsycl-is-device -fno-sycl-decompose-functor -triple nvptx64-nvidia-cuda -ast-dump %s | FileCheck %s -check-prefix=ALL -check-prefix=NODECOMP | ||
// RUN: %clang_cc1 -fsycl-is-device -fsycl-decompose-functor -triple nvptx64-nvidia-cuda -ast-dump %s | FileCheck %s -check-prefix=ALL -check-prefix=DECOMP | ||
|
||
#include "Inputs/sycl.hpp" | ||
|
||
class with_acc { | ||
public: | ||
int *d; | ||
sycl::accessor<char, 1, sycl::access::mode::read> AccField; | ||
}; | ||
|
||
class wrapping_acc { | ||
public: | ||
with_acc acc; | ||
void operator()() const { | ||
} | ||
}; | ||
|
||
class pointer_wrap { | ||
public: | ||
int *d; | ||
void operator()() const { | ||
} | ||
}; | ||
|
||
class empty { | ||
public: | ||
void operator()() const { | ||
} | ||
}; | ||
|
||
int main() { | ||
sycl::queue q; | ||
|
||
q.submit([&](sycl::handler &cgh) { | ||
wrapping_acc acc; | ||
cgh.single_task(acc); | ||
}); | ||
// ALL: FunctionDecl {{.*}} _ZTS12wrapping_acc 'void (__wrapper_class, __global char *, sycl::range<1>, sycl::range<1>, sycl::id<1>)' | ||
|
||
q.submit([&](sycl::handler &cgh) { | ||
pointer_wrap ptr; | ||
cgh.single_task(ptr); | ||
}); | ||
// NODECOMP: FunctionDecl {{.*}} _ZTS12pointer_wrap 'void (pointer_wrap)' | ||
// DECOMP: FunctionDecl {{.*}} _ZTS12pointer_wrap 'void (__global int *)' | ||
|
||
q.submit([&](sycl::handler &cgh) { | ||
empty e; | ||
cgh.single_task(e); | ||
}); | ||
// ALL: FunctionDecl {{.*}} _ZTS5empty 'void ()' | ||
|
||
return 0; | ||
} |
Oops, something went wrong.
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.