-
Notifications
You must be signed in to change notification settings - Fork 769
[SYCL][CUDA] Add sub-group barrier #2606
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
2 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -261,10 +261,13 @@ foreach( t ${LIBCLC_TARGETS_TO_BUILD} ) | |
foreach( d ${${t}_devices} ) | ||
# Some targets don't have a specific GPU to target | ||
if( ${d} STREQUAL "none" OR ${ARCH} STREQUAL "spirv" OR ${ARCH} STREQUAL "spirv64" ) | ||
set( mcpu ) | ||
# FIXME: Ideally we would not be tied to a specific PTX ISA version | ||
if( ${ARCH} STREQUAL nvptx OR ${ARCH} STREQUAL nvptx64 ) | ||
set( flags "SHELL:-Xclang -target-feature" "SHELL:-Xclang +ptx64") | ||
endif() | ||
set( arch_suffix "${t}" ) | ||
else() | ||
set( mcpu "-mcpu=${d}" ) | ||
set( flags "-mcpu=${d}" ) | ||
set( arch_suffix "${d}-${t}" ) | ||
endif() | ||
message( " DEVICE: ${d} ( ${${d}_aliases} )" ) | ||
|
@@ -276,14 +279,14 @@ foreach( t ${LIBCLC_TARGETS_TO_BUILD} ) | |
if( ${ARCH} STREQUAL nvptx OR ${ARCH} STREQUAL nvptx64 ) | ||
add_libclc_sycl_binding(libspirv_files | ||
TRIPLE ${t} | ||
COMPILE_OPT ${mcpu} | ||
COMPILE_OPT ${flags} | ||
FILES generic/libspirv/sycldevice-binding.cpp) | ||
endif() | ||
|
||
add_libclc_builtin_set(libspirv-${arch_suffix} | ||
TRIPLE ${t} | ||
TARGET_ENV libspirv | ||
COMPILE_OPT ${mcpu} | ||
COMPILE_OPT ${flags} | ||
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.
A more long term solution would be perhaps to define flag per |
||
FILES ${libspirv_files} | ||
ALIASES ${${d}_aliases} | ||
GENERATE_TARGET "generate_convert_spirv.cl" "generate_convert_core.cl" | ||
|
@@ -292,7 +295,7 @@ foreach( t ${LIBCLC_TARGETS_TO_BUILD} ) | |
add_libclc_builtin_set(clc-${arch_suffix} | ||
TRIPLE ${t} | ||
TARGET_ENV clc | ||
COMPILE_OPT ${mcpu} | ||
COMPILE_OPT ${flags} | ||
FILES ${lib_files} | ||
LIB_DEP libspirv-${arch_suffix} | ||
ALIASES ${${d}_aliases} | ||
|
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
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.
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.
Why using
"SHELL:
andstring( REGEX REPLACE "SHELL:"
later is needed ?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.
add_target_options
only works if theSHELL:
is there, butadd_custom_command
only works if theSHELL:
is not there.This is definitely a bit of a hack, but it seemed less error-prone than defining the same set of flags twice. If there's a more standard way to do this, please let me know and I'll fix it.
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.
Makes sense. I'm no CMake expert so I'm not quite sure how to make it better.