Skip to content
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

Add cooperative groups #3478

Open
wants to merge 7 commits into
base: docs/develop
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build:
post_checkout:
- if [ -d ../clr ]; then rm -rf ../clr; fi
- if [ -d ../ROCR-Runtime ]; then rm -rf ../ROCR-Runtime; fi
- git clone --depth=1 --single-branch --branch docs/develop https://github.com/ROCm/clr.git ../clr
- git clone --depth=1 --single-branch --branch cooperative_groups_documentation https://github.com/ROCm/clr.git ../clr
- git clone --depth=1 --single-branch --branch master https://github.com/ROCm/ROCR-Runtime.git ../ROCR-Runtime
post_build:
- rm -rf ../clr
Expand Down
2 changes: 2 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ cuCtx
cuDNN
dataflow
deallocate
decompositions
denormal
dll
DirectX
Expand Down Expand Up @@ -103,6 +104,7 @@ structs
SYCL
syntaxes
tradeoffs
templated
typedefs
UMM
WinGDB
Expand Down
7 changes: 7 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,10 @@
suppress_warnings = ["etoc.toctree"]

numfig = False


exclude_patterns = [
"doxygen/mainpage.md",
"understand/glossary.md",
"understand/thread_hierarchy_coop_figure.rst"
]

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

7 changes: 6 additions & 1 deletion docs/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,8 @@ INPUT = mainpage.md \
../../include/hip \
../../../clr/hipamd/include/hip/amd_detail/amd_hip_gl_interop.h \
../../../clr/hipamd/include/hip/amd_detail/amd_surface_functions.h \
../../../clr/hipamd/include/hip/amd_detail/amd_hip_cooperative_groups.h \
../../../llvm-project/clang/lib/Headers/__clang_hip_math.h \
../../../ROCR-Runtime/src/inc/hsa_ext_amd.h

# This tag can be used to specify the character encoding of the source files
Expand Down Expand Up @@ -2196,14 +2198,17 @@ INCLUDE_FILE_PATTERNS =
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

PREDEFINED = "__HIP_PLATFORM_AMD__" \
"DOXYGEN_SHOULD_INCLUDE_THIS=1" \
"DOXYGEN_SHOULD_SKIP_THIS=1" \
"__dparm(x)=" \
"__cplusplus=201103L" \
"__host__=" \
"__device__=" \
"__hip_img_chk__=" \
"__CG_QUALIFIER__=" \
"__CG_STATIC_QUALIFIER__=static" \
"_CG_STATIC_CONST_DECL_=static constexpr"
"_CG_STATIC_CONST_DECL_=static constexpr" \
"HIP_ENABLE_WARP_SYNC_BUILTINS"

# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
Expand Down
Loading
Loading