Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 projects/rocblas/docs/how-to/Programmers_Guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ rocblas_sizeof_datatype function

size_t rocblas_sizeof_datatype(rocblas_datatype type)

Returns the size of a rocBLAS runtime data type.
Comment thread
amcamd marked this conversation as resolved.
Returns the size of a HIP runtime data type.


Answering device memory size queries in functions that do not need memory
Expand Down
2 changes: 1 addition & 1 deletion projects/rocblas/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
rocBLAS documentation
********************************************************************

rocBLAS is the ROCm Basic Linear Algebra Subprograms (BLAS) library. rocBLAS is implemented in the :doc:`HIP programming language <hip:index>` and optimized for AMD GPUs.
rocBLAS is the ROCm Basic Linear Algebra Subprograms (BLAS) library. rocBLAS is implemented in :doc:`HIP C++ <hip:index>` and optimized for AMD GPUs.
This documentation set contains instructions for installing, understanding, and using the rocBLAS library.
To learn more, see :doc:`./what-is-rocblas`

Expand Down
4 changes: 2 additions & 2 deletions projects/rocblas/docs/what-is-rocblas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ What is rocBLAS?
********************************************************************

rocBLAS is the AMD library for Basic Linear Algebra Subprograms (BLAS) on the :doc:`ROCm platform <rocm:index>`.
It is implemented in the :doc:`HIP programming language <hip:index>` and optimized for AMD GPUs.
It is implemented in the :doc:`HIP C++ <hip:index>` and optimized for AMD GPUs.
For more detailed component information, see :doc:`rocBLAS design notes <../conceptual/rocblas-design-notes>`.

rocBLAS aims to provide the following:

* Functionality similar to legacy BLAS, adapted to run on AMD GPUs
* A high-performance, robust implementation

rocBLAS is written in C++17 and HIP and uses the AMD ROCm runtime.
rocBLAS is written in HIP C++ (using C++17 features) and it uses the HIP runtime.

The rocBLAS API is a thin C99 API that uses the hourglass pattern. It contains:

Expand Down