hip.hipsolver#
(No short description)
- Attributes:
- hipsolverVersionMajor (
int
): Macro constant.
- hipsolverVersionMinor (
int
): Macro constant.
- hipsolverVersionPatch (
int
): Macro constant.
- FP_NAN:
(undocumented)
- FP_INFINITE:
(undocumented)
- FP_ZERO:
(undocumented)
- FP_SUBNORMAL:
(undocumented)
- FP_NORMAL:
(undocumented)
- FP_NAN:
(undocumented)
- FP_INFINITE:
(undocumented)
- FP_ZERO:
(undocumented)
- FP_SUBNORMAL:
(undocumented)
- FP_NORMAL:
(undocumented)
- FP_NAN:
(undocumented)
- FP_INFINITE:
(undocumented)
- FP_ZERO:
(undocumented)
- FP_SUBNORMAL:
(undocumented)
- FP_NORMAL:
(undocumented)
- FP_NAN:
(undocumented)
- FP_INFINITE:
(undocumented)
- FP_ZERO:
(undocumented)
- FP_SUBNORMAL:
(undocumented)
- FP_NORMAL:
(undocumented)
- FP_NAN:
(undocumented)
- FP_INFINITE:
(undocumented)
- FP_ZERO:
(undocumented)
- FP_SUBNORMAL:
(undocumented)
- FP_NORMAL:
(undocumented)
- HIP_SUCCESS:
(undocumented)
- HIP_ERROR_INVALID_VALUE:
(undocumented)
- HIP_ERROR_NOT_INITIALIZED:
(undocumented)
- HIP_ERROR_LAUNCH_OUT_OF_RESOURCES:
(undocumented)
- HIP_SUCCESS:
(undocumented)
- HIP_ERROR_INVALID_VALUE:
(undocumented)
- HIP_ERROR_NOT_INITIALIZED:
(undocumented)
- HIP_ERROR_LAUNCH_OUT_OF_RESOURCES:
(undocumented)
- HIP_SUCCESS:
(undocumented)
- HIP_ERROR_INVALID_VALUE:
(undocumented)
- HIP_ERROR_NOT_INITIALIZED:
(undocumented)
- HIP_ERROR_LAUNCH_OUT_OF_RESOURCES:
(undocumented)
- HIP_SUCCESS:
(undocumented)
- HIP_ERROR_INVALID_VALUE:
(undocumented)
- HIP_ERROR_NOT_INITIALIZED:
(undocumented)
- HIP_ERROR_LAUNCH_OUT_OF_RESOURCES:
(undocumented)
- hipsolverVersionMajor (
- class hip.hipsolver.hipsolverStatus_t(value)#
Bases:
_hipsolverStatus_t__Base
- Attributes:
- HIPSOLVER_STATUS_SUCCESS:
(undocumented)
- HIPSOLVER_STATUS_NOT_INITIALIZED:
(undocumented)
- HIPSOLVER_STATUS_ALLOC_FAILED:
(undocumented)
- HIPSOLVER_STATUS_INVALID_VALUE:
(undocumented)
- HIPSOLVER_STATUS_MAPPING_ERROR:
(undocumented)
- HIPSOLVER_STATUS_EXECUTION_FAILED:
(undocumented)
- HIPSOLVER_STATUS_INTERNAL_ERROR:
(undocumented)
- HIPSOLVER_STATUS_NOT_SUPPORTED:
(undocumented)
- HIPSOLVER_STATUS_ARCH_MISMATCH:
(undocumented)
- HIPSOLVER_STATUS_HANDLE_IS_NULLPTR:
(undocumented)
- HIPSOLVER_STATUS_INVALID_ENUM:
(undocumented)
- HIPSOLVER_STATUS_UNKNOWN:
(undocumented)
- HIPSOLVER_STATUS_ZERO_PIVOT:
(undocumented)
- HIPSOLVER_STATUS_MATRIX_TYPE_NOT_SUPPORTED:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVER_STATUS_SUCCESS = 0#
- HIPSOLVER_STATUS_NOT_INITIALIZED = 1#
- HIPSOLVER_STATUS_ALLOC_FAILED = 2#
- HIPSOLVER_STATUS_INVALID_VALUE = 3#
- HIPSOLVER_STATUS_MAPPING_ERROR = 4#
- HIPSOLVER_STATUS_EXECUTION_FAILED = 5#
- HIPSOLVER_STATUS_INTERNAL_ERROR = 6#
- HIPSOLVER_STATUS_NOT_SUPPORTED = 7#
- HIPSOLVER_STATUS_ARCH_MISMATCH = 8#
- HIPSOLVER_STATUS_HANDLE_IS_NULLPTR = 9#
- HIPSOLVER_STATUS_INVALID_ENUM = 10#
- HIPSOLVER_STATUS_UNKNOWN = 11#
- HIPSOLVER_STATUS_ZERO_PIVOT = 12#
- HIPSOLVER_STATUS_MATRIX_TYPE_NOT_SUPPORTED = 13#
- class hip.hipsolver.hipsolverEigMode_t(value)#
Bases:
_hipsolverEigMode_t__Base
- Attributes:
- HIPSOLVER_EIG_MODE_NOVECTOR:
(undocumented)
- HIPSOLVER_EIG_MODE_VECTOR:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVER_EIG_MODE_NOVECTOR = 201#
- HIPSOLVER_EIG_MODE_VECTOR = 202#
- class hip.hipsolver.hipsolverEigType_t(value)#
Bases:
_hipsolverEigType_t__Base
- Attributes:
- HIPSOLVER_EIG_TYPE_1:
(undocumented)
- HIPSOLVER_EIG_TYPE_2:
(undocumented)
- HIPSOLVER_EIG_TYPE_3:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVER_EIG_TYPE_1 = 211#
- HIPSOLVER_EIG_TYPE_2 = 212#
- HIPSOLVER_EIG_TYPE_3 = 213#
- class hip.hipsolver.hipsolverEigRange_t(value)#
Bases:
_hipsolverEigRange_t__Base
- Attributes:
- HIPSOLVER_EIG_RANGE_ALL:
(undocumented)
- HIPSOLVER_EIG_RANGE_V:
(undocumented)
- HIPSOLVER_EIG_RANGE_I:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVER_EIG_RANGE_ALL = 221#
- HIPSOLVER_EIG_RANGE_V = 222#
- HIPSOLVER_EIG_RANGE_I = 223#
- hip.hipsolver.hipsolverCreate()#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDestroy(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSetStream(handle, streamId)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- streamId (
ihipStream_t
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverGetStream(handle, streamId)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCreateGesvdjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDestroyGesvdjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXgesvdjSetMaxSweeps(info, int max_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXgesvdjSetSortEig(info, int sort_eig)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXgesvdjSetTolerance(info, double tolerance)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXgesvdjGetResidual(handle, info, residual)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXgesvdjGetSweeps(handle, info, executed_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCreateSyevjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDestroySyevjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXsyevjSetMaxSweeps(info, int max_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXsyevjSetSortEig(info, int sort_eig)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXsyevjSetTolerance(info, double tolerance)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXsyevjGetResidual(handle, info, residual)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverXsyevjGetSweeps(handle, info, executed_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSorgbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDorgbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCungbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZungbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSorgbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDorgbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCungbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZungbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSorgqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDorgqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCungqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZungqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSorgqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDorgqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCungqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZungqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSorgtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDorgtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCungtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZungtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSorgtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDorgtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCungtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- hip.hipsolver.hipsolverZungtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSormqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDormqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCunmqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZunmqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSormqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDormqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCunmqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZunmqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSormtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDormtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCunmtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZunmtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSormtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDormtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCunmtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZunmtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
Pointer
/object
): (undocumented)
- taup (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
Pointer
/object
): (undocumented)
- taup (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
float2
/object
): (undocumented)
- taup (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
double2
/object
): (undocumented)
- taup (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSSgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDDgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCCgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZZgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSSgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDDgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCCgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZZgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSSgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDDgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCCgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZZgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSSgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDDgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCCgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZZgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgesvd_bufferSize(handle, signed char jobu, signed char jobv, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgesvd_bufferSize(handle, signed char jobu, signed char jobv, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgesvd_bufferSize(handle, signed char jobu, signed char jobv, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgesvd_bufferSize(handle, signed char jobu, signed char jobv, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSgetrf(handle, int m, int n, A, int lda, work, int lwork, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDgetrf(handle, int m, int n, A, int lda, work, int lwork, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCgetrf(handle, int m, int n, A, int lda, work, int lwork, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZgetrf(handle, int m, int n, A, int lda, work, int lwork, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSgetrs_bufferSize(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgetrs_bufferSize(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgetrs_bufferSize(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgetrs_bufferSize(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotrfBatched_bufferSize(handle, uplo, int n, A, int lda, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDpotrfBatched_bufferSize(handle, uplo, int n, A, int lda, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCpotrfBatched_bufferSize(handle, uplo, int n, A, int lda, lwork, int batch_count)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotrfBatched_bufferSize(handle, uplo, int n, A, int lda, lwork, int batch_count)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotrfBatched(handle, uplo, int n, A, int lda, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDpotrfBatched(handle, uplo, int n, A, int lda, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCpotrfBatched(handle, uplo, int n, A, int lda, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- hip.hipsolver.hipsolverZpotrfBatched(handle, uplo, int n, A, int lda, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- hip.hipsolver.hipsolverSpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotrs_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDpotrs_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCpotrs_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZpotrs_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpotrsBatched_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDpotrsBatched_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCpotrsBatched_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZpotrsBatched_bufferSize(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, work, int lwork, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSsyevd(handle, jobz, uplo, int n, A, int lda, D, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevd(handle, jobz, uplo, int n, A, int lda, D, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevd(handle, jobz, uplo, int n, A, int lda, D, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevd(handle, jobz, uplo, int n, A, int lda, D, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevdx(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevdx(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevdx(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevdx(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsyevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsyevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCheevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZheevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsygvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsygvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChegvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhegvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsytrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsytrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChetrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
float2
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhetrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
double2
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsytrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsytrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverChetrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZhetrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverCsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverZsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverCsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverZsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCreate()#
An alias for
hipsolverCreate
.#
- hip.hipsolver.hipsolverDnDestroy(handle)#
An alias for
hipsolverDestroy
.#
- hip.hipsolver.hipsolverDnSetStream(handle, streamId)#
An alias for
hipsolverSetStream
.#- Args:
- handle (
Pointer
/object
): (undocumented)
- streamId (
ihipStream_t
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnGetStream(handle, streamId)#
An alias for
hipsolverGetStream
.#
- hip.hipsolver.hipsolverDnCreateGesvdjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDestroyGesvdjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXgesvdjSetMaxSweeps(info, int max_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXgesvdjSetSortEig(info, int sort_eig)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXgesvdjSetTolerance(info, double tolerance)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXgesvdjGetResidual(handle, info, residual)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXgesvdjGetSweeps(handle, info, executed_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCreateSyevjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDestroySyevjInfo(info)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXsyevjSetMaxSweeps(info, int max_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXsyevjSetSortEig(info, int sort_eig)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXsyevjSetTolerance(info, double tolerance)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXsyevjGetResidual(handle, info, residual)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnXsyevjGetSweeps(handle, info, executed_sweeps)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSorgbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDorgbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCungbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZungbr_bufferSize(handle, side, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSorgbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDorgbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCungbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZungbr(handle, side, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSorgqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDorgqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCungqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZungqr_bufferSize(handle, int m, int n, int k, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSorgqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDorgqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCungqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZungqr(handle, int m, int n, int k, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSorgtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDorgtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCungtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZungtr_bufferSize(handle, uplo, int n, A, int lda, tau, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSorgtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDorgtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCungtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- hip.hipsolver.hipsolverDnZungtr(handle, uplo, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSormqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDormqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCunmqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZunmqr_bufferSize(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSormqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDormqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCunmqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZunmqr(handle, side, trans, int m, int n, int k, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- k (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSormtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDormtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCunmtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZunmtr_bufferSize(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSormtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDormtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- C (
Pointer
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCunmtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
float2
/object
): (undocumented)
- C (
float2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZunmtr(handle, side, uplo, trans, int m, int n, A, int lda, tau, C, int ldc, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- side (
hipblasSideMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- tau (
double2
/object
): (undocumented)
- C (
double2
/object
): (undocumented)
- ldc (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgebrd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
Pointer
/object
): (undocumented)
- taup (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
Pointer
/object
): (undocumented)
- taup (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
float2
/object
): (undocumented)
- taup (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgebrd(handle, int m, int n, A, int lda, D, E, tauq, taup, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tauq (
double2
/object
): (undocumented)
- taup (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSSgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDDgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCCgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZZgels_bufferSize(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSSgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDDgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCCgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZZgels(handle, int m, int n, int nrhs, A, int lda, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgeqrf(handle, int m, int n, A, int lda, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSSgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDDgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCCgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZZgesv_bufferSize(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSSgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDDgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
Pointer
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCCgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
float2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZZgesv(handle, int n, int nrhs, A, int lda, devIpiv, B, int ldb, X, int ldx, work, unsigned long lwork, niters, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- X (
double2
/object
): (undocumented)
- ldx (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- niters (
ListOfInt
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgesvd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgesvd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgesvd_bufferSize(handle, int m, int n, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvd(handle, signed char jobu, signed char jobv, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, rwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobu (
b
/y
/t
/e
/s
): (undocumented)
- jobv (
b
/y
/t
/e
/s
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- rwork (
Pointer
/object
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdj_bufferSize(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdj(handle, jobz, int econ, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- econ (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdjBatched_bufferSize(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdjBatched(handle, jobz, int m, int n, A, int lda, S, U, int ldu, V, int ldv, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdaStridedBatched_bufferSize(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdaStridedBatched_bufferSize(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdaStridedBatched_bufferSize(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdaStridedBatched_bufferSize(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, lwork, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgesvdaStridedBatched(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, work, int lwork, devInfo, hRnrmF, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- hRnrmF (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgesvdaStridedBatched(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, work, int lwork, devInfo, hRnrmF, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
Pointer
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
Pointer
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- hRnrmF (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgesvdaStridedBatched(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, work, int lwork, devInfo, hRnrmF, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
float2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
float2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- hRnrmF (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgesvdaStridedBatched(handle, jobz, int rank, int m, int n, A, int lda, long long strideA, S, long long strideS, U, int ldu, long long strideU, V, int ldv, long long strideV, work, int lwork, devInfo, hRnrmF, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- rank (
int
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- strideA (
int
): (undocumented)
- S (
Pointer
/object
): (undocumented)
- strideS (
int
): (undocumented)
- U (
double2
/object
): (undocumented)
- ldu (
int
): (undocumented)
- strideU (
int
): (undocumented)
- V (
double2
/object
): (undocumented)
- ldv (
int
): (undocumented)
- strideV (
int
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- hRnrmF (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSgetrf(handle, int m, int n, A, int lda, work, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDgetrf(handle, int m, int n, A, int lda, work, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCgetrf(handle, int m, int n, A, int lda, work, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZgetrf(handle, int m, int n, A, int lda, work, devIpiv, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZgetrs(handle, trans, int n, int nrhs, A, int lda, devIpiv, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
ListOfInt
/object
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotrf_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotrf(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotrfBatched(handle, uplo, int n, A, int lda, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDpotrfBatched(handle, uplo, int n, A, int lda, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCpotrfBatched(handle, uplo, int n, A, int lda, devInfo, int batch_count)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotrfBatched(handle, uplo, int n, A, int lda, devInfo, int batch_count)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotri_bufferSize(handle, uplo, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotri(handle, uplo, int n, A, int lda, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZpotrs(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
ListOfPointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
ListOfPointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZpotrsBatched(handle, uplo, int n, int nrhs, A, int lda, B, int ldb, devInfo, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSsyevd(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevd(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevd(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevd(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevdx_bufferSize(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevdx(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevdx(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevdx(handle, jobz, range, uplo, int n, A, int lda, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevdx(handle, jobz, range, uplo, int n, A, int lda, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevj_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevj(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevjBatched_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsyevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsyevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCheevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZheevjBatched(handle, jobz, uplo, int n, A, int lda, W, work, int lwork, devInfo, params, int batch_count)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- batch_count (
int
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvd_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvd(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvdx_bufferSize(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, float vl, float vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvdx(handle, itype, jobz, range, uplo, int n, A, int lda, B, int ldb, double vl, double vu, int il, int iu, nev, W, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- range (
hipsolverEigRange_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- vl (
float
/int
): (undocumented)
- vu (
float
/int
): (undocumented)
- il (
int
): (undocumented)
- iu (
int
): (undocumented)
- nev (
ListOfInt
/object
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvj_bufferSize(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, lwork, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsygvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsygvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChegvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
float2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhegvj(handle, itype, jobz, uplo, int n, A, int lda, B, int ldb, W, work, int lwork, devInfo, params)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- itype (
hipsolverEigType_t
): (undocumented)
- jobz (
hipsolverEigMode_t
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- B (
double2
/object
): (undocumented)
- ldb (
int
): (undocumented)
- W (
Pointer
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsytrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsytrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChetrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
float2
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhetrd_bufferSize(handle, uplo, int n, A, int lda, D, E, tau, lwork)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
double2
/object
): (undocumented)
- lwork (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsytrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsytrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
Pointer
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnChetrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
float2
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZhetrd(handle, uplo, int n, A, int lda, D, E, tau, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- D (
Pointer
/object
): (undocumented)
- E (
Pointer
/object
): (undocumented)
- tau (
double2
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnSsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnCsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnZsytrf_bufferSize(handle, int n, A, int lda, lwork)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnDsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
Pointer
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnCsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
float2
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
float2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnZsytrf(handle, uplo, int n, A, int lda, ipiv, work, int lwork, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- uplo (
hipblasFillMode_t
): (undocumented)
- n (
int
): (undocumented)
- A (
double2
/object
): (undocumented)
- lda (
int
): (undocumented)
- ipiv (
ListOfInt
/object
): (undocumented)
- work (
double2
/object
): (undocumented)
- lwork (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- class hip.hipsolver.hipsolverAlgMode_t(value)#
Bases:
_hipsolverAlgMode_t__Base
- Attributes:
- HIPSOLVER_ALG_0:
(undocumented)
- HIPSOLVER_ALG_1:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVER_ALG_0 = 231#
- HIPSOLVER_ALG_1 = 232#
- class hip.hipsolver.hipsolverDnFunction_t(value)#
Bases:
_hipsolverDnFunction_t__Base
- Attributes:
- HIPSOLVERDN_GETRF:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERDN_GETRF = 0#
- hip.hipsolver.hipsolverDnCreateParams(params)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnDestroyParams(params)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverDnSetAdvOptions(params, func, alg)#
(No short description, might be part of a group.)
- Args:
- params (
Pointer
/object
): (undocumented)
- func (
hipsolverDnFunction_t
): (undocumented)
- alg (
hipsolverAlgMode_t
): (undocumented)
- params (
- hip.hipsolver.hipsolverDnXgetrf_bufferSize(handle, params, long m, long n, dataTypeA, A, long lda, computeType, lworkOnDevice, lworkOnHost)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- dataTypeA (
hipDataType
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- computeType (
hipDataType
): (undocumented)
- lworkOnDevice (
ListOfUnsignedLong
/object
): (undocumented)
- lworkOnHost (
ListOfUnsignedLong
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnXgetrf(handle, params, long m, long n, dataTypeA, A, long lda, devIpiv, computeType, workOnDevice, unsigned long lworkOnDevice, workOnHost, unsigned long lworkOnHost, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- m (
int
): (undocumented)
- n (
int
): (undocumented)
- dataTypeA (
hipDataType
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
Pointer
/object
): (undocumented)
- computeType (
hipDataType
): (undocumented)
- workOnDevice (
Pointer
/object
): (undocumented)
- lworkOnDevice (
int
): (undocumented)
- workOnHost (
Pointer
/object
): (undocumented)
- lworkOnHost (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverDnXgetrs(handle, params, trans, long n, long nrhs, dataTypeA, A, long lda, devIpiv, dataTypeB, B, long ldb, devInfo)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- params (
Pointer
/object
): (undocumented)
- trans (
hipblasOperation_t
): (undocumented)
- n (
int
): (undocumented)
- nrhs (
int
): (undocumented)
- dataTypeA (
hipDataType
): (undocumented)
- A (
Pointer
/object
): (undocumented)
- lda (
int
): (undocumented)
- devIpiv (
Pointer
/object
): (undocumented)
- dataTypeB (
hipDataType
): (undocumented)
- B (
Pointer
/object
): (undocumented)
- ldb (
int
): (undocumented)
- devInfo (
ListOfInt
/object
): (undocumented)
- handle (
- class hip.hipsolver.hipsolverRfFactorization_t(value)#
Bases:
_hipsolverRfFactorization_t__Base
- Attributes:
- HIPSOLVERRF_FACTORIZATION_ALG0:
(undocumented)
- HIPSOLVERRF_FACTORIZATION_ALG1:
(undocumented)
- HIPSOLVERRF_FACTORIZATION_ALG2:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_FACTORIZATION_ALG0 = 0#
- HIPSOLVERRF_FACTORIZATION_ALG1 = 1#
- HIPSOLVERRF_FACTORIZATION_ALG2 = 2#
- class hip.hipsolver.hipsolverRfMatrixFormat_t(value)#
Bases:
_hipsolverRfMatrixFormat_t__Base
- Attributes:
- HIPSOLVERRF_MATRIX_FORMAT_CSR:
(undocumented)
- HIPSOLVERRF_MATRIX_FORMAT_CSC:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_MATRIX_FORMAT_CSR = 0#
- HIPSOLVERRF_MATRIX_FORMAT_CSC = 1#
- class hip.hipsolver.hipsolverRfNumericBoostReport_t(value)#
Bases:
_hipsolverRfNumericBoostReport_t__Base
- Attributes:
- HIPSOLVERRF_NUMERIC_BOOST_NOT_USED:
(undocumented)
- HIPSOLVERRF_NUMERIC_BOOST_USED:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_NUMERIC_BOOST_NOT_USED = 0#
- HIPSOLVERRF_NUMERIC_BOOST_USED = 1#
- class hip.hipsolver.hipsolverRfResetValuesFastMode_t(value)#
Bases:
_hipsolverRfResetValuesFastMode_t__Base
- Attributes:
- HIPSOLVERRF_RESET_VALUES_FAST_MODE_OFF:
(undocumented)
- HIPSOLVERRF_RESET_VALUES_FAST_MODE_ON:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_RESET_VALUES_FAST_MODE_OFF = 0#
- HIPSOLVERRF_RESET_VALUES_FAST_MODE_ON = 1#
- class hip.hipsolver.hipsolverRfTriangularSolve_t(value)#
Bases:
_hipsolverRfTriangularSolve_t__Base
- Attributes:
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG1:
(undocumented)
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG2:
(undocumented)
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG3:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG1 = 1#
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG2 = 2#
- HIPSOLVERRF_TRIANGULAR_SOLVE_ALG3 = 3#
- class hip.hipsolver.hipsolverRfUnitDiagonal_t(value)#
Bases:
_hipsolverRfUnitDiagonal_t__Base
- Attributes:
- HIPSOLVERRF_UNIT_DIAGONAL_STORED_L:
(undocumented)
- HIPSOLVERRF_UNIT_DIAGONAL_STORED_U:
(undocumented)
- HIPSOLVERRF_UNIT_DIAGONAL_ASSUMED_L:
(undocumented)
- HIPSOLVERRF_UNIT_DIAGONAL_ASSUMED_U:
(undocumented)
- conjugate()#
Returns self, the complex conjugate of any int.
- bit_length()#
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()#
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- to_bytes(length, byteorder, *, signed=False)#
Return an array of bytes representing an integer.
- length
Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.
- from_bytes(byteorder, *, signed=False)#
Return the integer represented by the given array of bytes.
- bytes
Holds the array of bytes to convert. The argument must either support the buffer protocol or be an iterable object producing bytes. Bytes and bytearray are examples of built-in objects that support the buffer protocol.
- byteorder
The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.
- signed
Indicates whether two’s complement is used to represent the integer.
- as_integer_ratio()#
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real#
the real part of a complex number
- imag#
the imaginary part of a complex number
- numerator#
the numerator of a rational number in lowest terms
- denominator#
the denominator of a rational number in lowest terms
- static ctypes_type()#
The type of the enum constants as ctypes type.
- HIPSOLVERRF_UNIT_DIAGONAL_STORED_L = 0#
- HIPSOLVERRF_UNIT_DIAGONAL_STORED_U = 1#
- HIPSOLVERRF_UNIT_DIAGONAL_ASSUMED_L = 2#
- HIPSOLVERRF_UNIT_DIAGONAL_ASSUMED_U = 3#
- hip.hipsolver.hipsolverRfCreate()#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfDestroy(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfSetupDevice(int n, int nnzA, csrRowPtrA, csrColIndA, csrValA, int nnzL, csrRowPtrL, csrColIndL, csrValL, int nnzU, csrRowPtrU, csrColIndU, csrValU, P, Q, handle)#
(No short description, might be part of a group.)
- Args:
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- csrRowPtrA (
ListOfInt
/object
): (undocumented)
- csrColIndA (
ListOfInt
/object
): (undocumented)
- csrValA (
Pointer
/object
): (undocumented)
- nnzL (
int
): (undocumented)
- csrRowPtrL (
ListOfInt
/object
): (undocumented)
- csrColIndL (
ListOfInt
/object
): (undocumented)
- csrValL (
Pointer
/object
): (undocumented)
- nnzU (
int
): (undocumented)
- csrRowPtrU (
ListOfInt
/object
): (undocumented)
- csrColIndU (
ListOfInt
/object
): (undocumented)
- csrValU (
Pointer
/object
): (undocumented)
- P (
ListOfInt
/object
): (undocumented)
- Q (
ListOfInt
/object
): (undocumented)
- handle (
Pointer
/object
): (undocumented)
- n (
- hip.hipsolver.hipsolverRfSetupHost(int n, int nnzA, h_csrRowPtrA, h_csrColIndA, h_csrValA, int nnzL, h_csrRowPtrL, h_csrColIndL, h_csrValL, int nnzU, h_csrRowPtrU, h_csrColIndU, h_csrValU, h_P, h_Q, handle)#
(No short description, might be part of a group.)
- Args:
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- h_csrRowPtrA (
ListOfInt
/object
): (undocumented)
- h_csrColIndA (
ListOfInt
/object
): (undocumented)
- h_csrValA (
Pointer
/object
): (undocumented)
- nnzL (
int
): (undocumented)
- h_csrRowPtrL (
ListOfInt
/object
): (undocumented)
- h_csrColIndL (
ListOfInt
/object
): (undocumented)
- h_csrValL (
Pointer
/object
): (undocumented)
- nnzU (
int
): (undocumented)
- h_csrRowPtrU (
ListOfInt
/object
): (undocumented)
- h_csrColIndU (
ListOfInt
/object
): (undocumented)
- h_csrValU (
Pointer
/object
): (undocumented)
- h_P (
ListOfInt
/object
): (undocumented)
- h_Q (
ListOfInt
/object
): (undocumented)
- handle (
Pointer
/object
): (undocumented)
- n (
- hip.hipsolver.hipsolverRfAccessBundledFactorsDevice(handle, nnzM, Mp, Mi, Mx)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfAnalyze(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfExtractBundledFactorsHost(handle, h_nnzM, h_Mp, h_Mi, h_Mx)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfExtractSplitFactorsHost(handle, h_nnzL, h_Lp, h_Li, h_Lx, h_nnzU, h_Up, h_Ui, h_Ux)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- h_nnzL (
ListOfInt
/object
): (undocumented)
- h_Lp (
ListOfInt
/object
): (undocumented)
- h_Li (
ListOfInt
/object
): (undocumented)
- h_Lx (
Pointer
/object
): (undocumented)
- h_nnzU (
ListOfInt
/object
): (undocumented)
- h_Up (
ListOfInt
/object
): (undocumented)
- h_Ui (
ListOfInt
/object
): (undocumented)
- h_Ux (
Pointer
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverRfGet_Algs(handle, fact_alg, solve_alg)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfGetMatrixFormat(handle, format, diag)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfGetNumericBoostReport(handle, report)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfGetNumericProperties(handle, zero, boost)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfGetResetValuesFastMode(handle, fastMode)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfRefactor(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfResetValues(int n, int nnzA, csrRowPtrA, csrColIndA, csrValA, P, Q, handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfSetAlgs(handle, fact_alg, solve_alg)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- fact_alg (
hipsolverRfFactorization_t
): (undocumented)
- solve_alg (
hipsolverRfTriangularSolve_t
): (undocumented)
- handle (
- hip.hipsolver.hipsolverRfSetMatrixFormat(handle, format, diag)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- format (
hipsolverRfMatrixFormat_t
): (undocumented)
- diag (
hipsolverRfUnitDiagonal_t
): (undocumented)
- handle (
- hip.hipsolver.hipsolverRfSetNumericProperties(handle, double effective_zero, double boost_val)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfSetResetValuesFastMode(handle, fastMode)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- fastMode (
hipsolverRfResetValuesFastMode_t
): (undocumented)
- handle (
- hip.hipsolver.hipsolverRfSolve(handle, P, Q, int nrhs, Temp, int ldt, XF, int ldxf)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfBatchSetupHost(int batchSize, int n, int nnzA, h_csrRowPtrA, h_csrColIndA, h_csrValA_array, int nnzL, h_csrRowPtrL, h_csrColIndL, h_csrValL, int nnzU, h_csrRowPtrU, h_csrColIndU, h_csrValU, h_P, h_Q, handle)#
(No short description, might be part of a group.)
- Args:
- batchSize (
int
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- h_csrRowPtrA (
ListOfInt
/object
): (undocumented)
- h_csrColIndA (
ListOfInt
/object
): (undocumented)
- h_csrValA_array (
Pointer
/object
): (undocumented)
- nnzL (
int
): (undocumented)
- h_csrRowPtrL (
ListOfInt
/object
): (undocumented)
- h_csrColIndL (
ListOfInt
/object
): (undocumented)
- h_csrValL (
Pointer
/object
): (undocumented)
- nnzU (
int
): (undocumented)
- h_csrRowPtrU (
ListOfInt
/object
): (undocumented)
- h_csrColIndU (
ListOfInt
/object
): (undocumented)
- h_csrValU (
Pointer
/object
): (undocumented)
- h_P (
ListOfInt
/object
): (undocumented)
- h_Q (
ListOfInt
/object
): (undocumented)
- handle (
Pointer
/object
): (undocumented)
- batchSize (
- hip.hipsolver.hipsolverRfBatchAnalyze(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfBatchRefactor(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfBatchResetValues(int batchSize, int n, int nnzA, csrRowPtrA, csrColIndA, csrValA_array, P, Q, handle)#
(No short description, might be part of a group.)
- Args:
- batchSize (
int
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- csrRowPtrA (
ListOfInt
/object
): (undocumented)
- csrColIndA (
ListOfInt
/object
): (undocumented)
- csrValA_array (
Pointer
/object
): (undocumented)
- P (
ListOfInt
/object
): (undocumented)
- Q (
ListOfInt
/object
): (undocumented)
- handle (
Pointer
/object
): (undocumented)
- batchSize (
- hip.hipsolver.hipsolverRfBatchSolve(handle, P, Q, int nrhs, Temp, int ldt, XF_array, int ldxf)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverRfBatchZeroPivot(handle, position)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpCreate()#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpDestroy(handle)#
(No short description, might be part of a group.)
- hip.hipsolver.hipsolverSpSetStream(handle, streamId)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- streamId (
ihipStream_t
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpScsrlsvchol(handle, int n, int nnzA, descrA, csrVal, csrRowPtr, csrColInd, b, float tolerance, int reorder, x, singularity)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- descrA (
Pointer
/object
): (undocumented)
- csrVal (
Pointer
/object
): (undocumented)
- csrRowPtr (
ListOfInt
/object
): (undocumented)
- csrColInd (
ListOfInt
/object
): (undocumented)
- b (
Pointer
/object
): (undocumented)
- tolerance (
float
/int
): (undocumented)
- reorder (
int
): (undocumented)
- x (
Pointer
/object
): (undocumented)
- singularity (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpDcsrlsvchol(handle, int n, int nnzA, descrA, csrVal, csrRowPtr, csrColInd, b, double tolerance, int reorder, x, singularity)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- descrA (
Pointer
/object
): (undocumented)
- csrVal (
Pointer
/object
): (undocumented)
- csrRowPtr (
ListOfInt
/object
): (undocumented)
- csrColInd (
ListOfInt
/object
): (undocumented)
- b (
Pointer
/object
): (undocumented)
- tolerance (
float
/int
): (undocumented)
- reorder (
int
): (undocumented)
- x (
Pointer
/object
): (undocumented)
- singularity (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpScsrlsvcholHost(handle, int n, int nnzA, descrA, csrVal, csrRowPtr, csrColInd, b, float tolerance, int reorder, x, singularity)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- descrA (
Pointer
/object
): (undocumented)
- csrVal (
Pointer
/object
): (undocumented)
- csrRowPtr (
ListOfInt
/object
): (undocumented)
- csrColInd (
ListOfInt
/object
): (undocumented)
- b (
Pointer
/object
): (undocumented)
- tolerance (
float
/int
): (undocumented)
- reorder (
int
): (undocumented)
- x (
Pointer
/object
): (undocumented)
- singularity (
ListOfInt
/object
): (undocumented)
- handle (
- hip.hipsolver.hipsolverSpDcsrlsvcholHost(handle, int n, int nnzA, descrA, csrVal, csrRowPtr, csrColInd, b, double tolerance, int reorder, x, singularity)#
(No short description, might be part of a group.)
- Args:
- handle (
Pointer
/object
): (undocumented)
- n (
int
): (undocumented)
- nnzA (
int
): (undocumented)
- descrA (
Pointer
/object
): (undocumented)
- csrVal (
Pointer
/object
): (undocumented)
- csrRowPtr (
ListOfInt
/object
): (undocumented)
- csrColInd (
ListOfInt
/object
): (undocumented)
- b (
Pointer
/object
): (undocumented)
- tolerance (
float
/int
): (undocumented)
- reorder (
int
): (undocumented)
- x (
Pointer
/object
): (undocumented)
- singularity (
ListOfInt
/object
): (undocumented)
- handle (