Skip to content

Commit

Permalink
Merge pull request #959 from emankov/HIPIFY
Browse files Browse the repository at this point in the history
[HIPIFY][doc][5.7.0] `CHANGELOG.md` update
  • Loading branch information
emankov authored Jul 17, 2023
2 parents 6eccfb7 + 481dd5c commit f044cd5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

Full documentation for HIPIFY is available at [hipify.readthedocs.io](https://hipify.readthedocs.io/en/latest/).

## HIPIFY for ROCm 5.7.0
### Added
- CUDA 12.2.0 support
- cuDNN 8.9.2 support
- LLVM 16.0.6 support
- Initial rocSPARSE support
- Initial CUDA2ROC documentation generation for rocBLAS, rocSPARSE, and MIOpen:
- in separate files: hipify-clang --md --doc-format=full --doc-roc=separate
- in a single file: hipify-clang --md --doc-format=full --doc-roc=joint
- New options:
- --use-hip-data-types (Use 'hipDataType' instead of 'hipblasDatatype_t' or 'rocblas_datatype')
- --doc-roc=\<value\> (ROC documentation generation: 'skip' (default), 'separate', or 'joint'; the '--md' or '--csv' option must be specified)
### Fixed
- [#822] Add a new function call transformation type "additional const by value arg"
- [#830] Add a new function call transformation type "move arg from place X to place Y"

## HIPIFY for ROCm 5.6.0
### Added
- CUDA 12.1.0 support
Expand Down
2 changes: 1 addition & 1 deletion src/ArgParse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ cl::opt<std::string> DocFormat("doc-format",
cl::cat(ToolTemplateCategory));

cl::opt<std::string> DocRoc("doc-roc",
cl::desc("ROC cocumentation generation: 'skip' (default), 'separate', or 'joint'; the '--md' or '--csv' option must be specified"),
cl::desc("ROC documentation generation: 'skip' (default), 'separate', or 'joint'; the '--md' or '--csv' option must be specified"),
cl::value_desc("value"),
cl::cat(ToolTemplateCategory));

Expand Down

0 comments on commit f044cd5

Please sign in to comment.