Skip to content

Commit

Permalink
Merge pull request #1781 from emankov/HIPIFY
Browse files Browse the repository at this point in the history
[HIPIFY][fix] Fix the links to `ROCm`
  • Loading branch information
emankov authored Dec 5, 2024
2 parents 5442131 + 533062a commit 976c313
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ HIPIFY documentation

.. note::

`hipify_torch <https://github.com/ROCmSoftwarePlatform/hipify_torch>`_ is a related tool that also translates CUDA source code into portable HIP C++. It was initially developed as part of the PyTorch project to cater to the project's unique requirements but was found to be useful for PyTorch-related projects and thus was released as an independent utility.
`hipify_torch <https://github.com/ROCm/hipify_torch>`_ is a related tool that also translates CUDA source code into portable HIP C++. It was initially developed as part of the PyTorch project to cater to the project's unique requirements but was found to be useful for PyTorch-related projects and thus was released as an independent utility.

You can access HIPIFY code on our `GitHub repository <https://github.com/ROCm/HIPIFY>`_.

Expand Down
2 changes: 1 addition & 1 deletion packaging/hipify-clang.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if(DEFINED ENV{ROCM_LIBPATCH_VERSION})
endif()

#Debian package specific variables
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE ${CPACK_DEBIAN_PACKAGE_HOMEPAGE} CACHE STRING "https://github.com/RadeonOpenCompute/ROCm")
set(CPACK_DEBIAN_PACKAGE_HOMEPAGE ${CPACK_DEBIAN_PACKAGE_HOMEPAGE} CACHE STRING "https://github.com/ROCm")
if(ROCM_DEP_ROCMCORE)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "rocm-core")
endif()
Expand Down
2 changes: 1 addition & 1 deletion src/ArgParse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ cl::opt<bool> Versions("versions",
cl::value_desc("versions"),
cl::cat(ToolTemplateCategory));

// NOTE: A temporary solution; to remove after fixing https://github.com/ROCmSoftwarePlatform/hipBLAS/issues/366
// NOTE: A temporary solution; to remove after fixing https://github.com/ROCm/hipBLAS/issues/366
cl::opt<bool> UseHipDataType("use-hip-data-types",
cl::desc("Use 'hipDataType' instead of 'hipblasDatatype_t' or 'rocblas_datatype'"),
cl::value_desc("use-hip-data-types"),
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/synthetic/driver_functions.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1874,7 +1874,7 @@ int main() {
CUDA_GRAPH_INSTANTIATE_PARAMS_st GRAPH_INSTANTIATE_PARAMS_st;
CUDA_GRAPH_INSTANTIATE_PARAMS GRAPH_INSTANTIATE_PARAMS;

// TODO: https://github.com/ROCm-Developer-Tools/HIPIFY/issues/782 - Introduce 1-to-N conditional matcher
// TODO: https://github.com/ROCm/HIPIFY/issues/782 - Introduce 1-to-N conditional matcher
// Implement "conditional" matching in hipify-clang, based on CUDA_VERSION first;
// below the transformation cuStreamGetCaptureInfo -> hipStreamGetCaptureInfo_v2 should be applied for CUDA_VERSION >= 12000,
// otherwise, cuStreamGetCaptureInfo -> hipStreamGetCaptureInfo should be applied
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/synthetic/libraries/cublas2rocblas.cu
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ int main() {
void* image = nullptr;
void* image_2 = nullptr;

// https://github.com/ROCmSoftwarePlatform/rocBLAS/issues/1281
// https://github.com/ROCm/rocBLAS/issues/1281
// TODO: Apply the chosen typecasting of int to rocblas_int arguments

/*
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/synthetic/libraries/cublas2rocblas_v2.cu
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int main() {
void *vy = nullptr;
void *vresult = nullptr;

// https://github.com/ROCmSoftwarePlatform/rocBLAS/issues/1281
// https://github.com/ROCm/rocBLAS/issues/1281
// TODO: Apply the chosen typecasting of int to rocblas_int arguments

/*
Expand Down

0 comments on commit 976c313

Please sign in to comment.