rocblashandle
rocblas_handle is an opaque context object used by the rocBLAS library, part of the ROCm platform for AMD GPUs. It encapsulates per-context resources and settings required for executing BLAS operations on the device. Programs typically create a handle, use it in rocBLAS function calls, and then destroy it when finished.
The handle is created with a function such as rocblas_create_handle and destroyed with rocblas_destroy_handle. It is
Most rocBLAS routines require the handle to be passed as the first argument. Examples include single-precision
The handle can be configured to control execution behavior. It can be associated with a specific GPU
Error handling follows the rocBLAS convention, with functions returning a status code indicating success or failure.
See also: ROCm, rocBLAS, HIP, GPU-accelerated linear algebra.