hip.hipsolver

Contents

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)

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.)

Returns:

A tuple of size 1 that contains (in that order):

hip.hipsolver.hipsolverDestroy(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverSetStream(handle, streamId)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

streamId (ihipStream_t/object):

(undocumented)

hip.hipsolver.hipsolverGetStream(handle, streamId)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

streamId (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverCreateGesvdjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDestroyGesvdjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverXgesvdjSetMaxSweeps(info, int max_sweeps)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

max_sweeps (int):

(undocumented)

hip.hipsolver.hipsolverXgesvdjSetSortEig(info, int sort_eig)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

sort_eig (int):

(undocumented)

hip.hipsolver.hipsolverXgesvdjSetTolerance(info, double tolerance)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

tolerance (float/int):

(undocumented)

hip.hipsolver.hipsolverXgesvdjGetResidual(handle, info, residual)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

residual (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverXgesvdjGetSweeps(handle, info, executed_sweeps)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

executed_sweeps (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCreateSyevjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDestroySyevjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverXsyevjSetMaxSweeps(info, int max_sweeps)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

max_sweeps (int):

(undocumented)

hip.hipsolver.hipsolverXsyevjSetSortEig(info, int sort_eig)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

sort_eig (int):

(undocumented)

hip.hipsolver.hipsolverXsyevjSetTolerance(info, double tolerance)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

tolerance (float/int):

(undocumented)

hip.hipsolver.hipsolverXsyevjGetResidual(handle, info, residual)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

residual (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverXsyevjGetSweeps(handle, info, executed_sweeps)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

executed_sweeps (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

hip.hipsolver.hipsolverSorgtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (Pointer/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDorgtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (Pointer/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCungtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (float2/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZungtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (double2/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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:
handle (Pointer/object):

(undocumented)

uplo (hipblasFillMode_t):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

tau (float2/object):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

tau (float2/object):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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)

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)

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)

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)

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)

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)

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)

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)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (double2/object):

(undocumented)

lda (int):

(undocumented)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverSpotrf(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDpotrf(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCpotrf(handle, uplo, int n, A, int lda, 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)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZpotrf(handle, uplo, int n, A, int lda, 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)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

hip.hipsolver.hipsolverCpotrfBatched_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 (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

hip.hipsolver.hipsolverZpotrfBatched_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 (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

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)

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)

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:
handle (Pointer/object):

(undocumented)

uplo (hipblasFillMode_t):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

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:
handle (Pointer/object):

(undocumented)

uplo (hipblasFillMode_t):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

hip.hipsolver.hipsolverSpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverSpotri(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDpotri(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCpotri(handle, uplo, int n, A, int lda, 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)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZpotri(handle, uplo, int n, A, int lda, 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)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

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)

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.)

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)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, D, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverSsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverCsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverZsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (double2/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnCreate()#

An alias for hipsolverCreate.#

Returns:

A tuple of size 1 that contains (in that order):

hip.hipsolver.hipsolverDnDestroy(handle)#

An alias for hipsolverDestroy.#

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnSetStream(handle, streamId)#

An alias for hipsolverSetStream.#

Args:
handle (Pointer/object):

(undocumented)

streamId (ihipStream_t/object):

(undocumented)

hip.hipsolver.hipsolverDnGetStream(handle, streamId)#

An alias for hipsolverGetStream.#

Args:
handle (Pointer/object):

(undocumented)

streamId (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnCreateGesvdjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnDestroyGesvdjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnXgesvdjSetMaxSweeps(info, int max_sweeps)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

max_sweeps (int):

(undocumented)

hip.hipsolver.hipsolverDnXgesvdjSetSortEig(info, int sort_eig)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

sort_eig (int):

(undocumented)

hip.hipsolver.hipsolverDnXgesvdjSetTolerance(info, double tolerance)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

tolerance (float/int):

(undocumented)

hip.hipsolver.hipsolverDnXgesvdjGetResidual(handle, info, residual)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

residual (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnXgesvdjGetSweeps(handle, info, executed_sweeps)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

executed_sweeps (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCreateSyevjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnDestroySyevjInfo(info)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnXsyevjSetMaxSweeps(info, int max_sweeps)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

max_sweeps (int):

(undocumented)

hip.hipsolver.hipsolverDnXsyevjSetSortEig(info, int sort_eig)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

sort_eig (int):

(undocumented)

hip.hipsolver.hipsolverDnXsyevjSetTolerance(info, double tolerance)#

(No short description, might be part of a group.)

Args:
info (Pointer/object):

(undocumented)

tolerance (float/int):

(undocumented)

hip.hipsolver.hipsolverDnXsyevjGetResidual(handle, info, residual)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

residual (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnXsyevjGetSweeps(handle, info, executed_sweeps)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

info (Pointer/object):

(undocumented)

executed_sweeps (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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.)

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)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSorgtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (Pointer/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDorgtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (Pointer/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCungtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (float2/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZungtr_bufferSize(handle, uplo, int n, A, int lda, 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)

tau (double2/object):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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:
handle (Pointer/object):

(undocumented)

uplo (hipblasFillMode_t):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

tau (float2/object):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZgebrd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZgeqrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

tau (float2/object):

(undocumented)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSgesvd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDgesvd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCgesvd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZgesvd_bufferSize(handle, int m, int n, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

m (int):

(undocumented)

n (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZgetrf_bufferSize(handle, int m, int n, A, int lda, lwork)#

(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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnSgetrf(handle, int m, int n, A, int lda, work, devIpiv, 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)

work (Pointer/object):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDgetrf(handle, int m, int n, A, int lda, work, devIpiv, 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)

work (Pointer/object):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCgetrf(handle, int m, int n, A, int lda, work, devIpiv, 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)

work (float2/object):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZgetrf(handle, int m, int n, A, int lda, work, devIpiv, 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)

work (double2/object):

(undocumented)

devIpiv (ListOfInt/object):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZpotrf_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnSpotrf(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDpotrf(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCpotrf(handle, uplo, int n, A, int lda, 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)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZpotrf(handle, uplo, int n, A, int lda, 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)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

hip.hipsolver.hipsolverDnCpotrfBatched(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 (Pointer/object):

(undocumented)

lda (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

hip.hipsolver.hipsolverDnZpotrfBatched(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 (Pointer/object):

(undocumented)

lda (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

batch_count (int):

(undocumented)

hip.hipsolver.hipsolverDnSpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZpotri_bufferSize(handle, uplo, int n, A, int lda, 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)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnSpotri(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDpotri(handle, uplo, int n, A, int lda, 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)

work (Pointer/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCpotri(handle, uplo, int n, A, int lda, 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)

work (float2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZpotri(handle, uplo, int n, A, int lda, 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)

work (double2/object):

(undocumented)

lwork (int):

(undocumented)

devInfo (ListOfInt/object):

(undocumented)

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.)

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)

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.)

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)

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.)

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)

devInfo (ListOfInt/object):

(undocumented)

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.)

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)

devInfo (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#

(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)

hip.hipsolver.hipsolverDnDsyevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#

(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)

hip.hipsolver.hipsolverDnCheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#

(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)

hip.hipsolver.hipsolverDnZheevd_bufferSize(handle, jobz, uplo, int n, A, int lda, W, lwork)#

(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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

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)

hip.hipsolver.hipsolverDnSsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnDsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (Pointer/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnCsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (float2/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverDnZsytrf_bufferSize(handle, int n, A, int lda, lwork)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

n (int):

(undocumented)

A (double2/object):

(undocumented)

lda (int):

(undocumented)

lwork (ListOfInt/object):

(undocumented)

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)

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)

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)

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)

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.)

Args:
params (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverDnDestroyParams(params)#

(No short description, might be part of a group.)

Args:
params (Pointer/object):

(undocumented)

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)

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)

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)

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)

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.)

Returns:

A tuple of size 1 that contains (in that order):

hip.hipsolver.hipsolverRfDestroy(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

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)

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)

hip.hipsolver.hipsolverRfAccessBundledFactorsDevice(handle, nnzM, Mp, Mi, Mx)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

nnzM (ListOfInt/object):

(undocumented)

Mp (ListOfInt/object):

(undocumented)

Mi (ListOfInt/object):

(undocumented)

Mx (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfAnalyze(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfExtractBundledFactorsHost(handle, h_nnzM, h_Mp, h_Mi, h_Mx)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

h_nnzM (ListOfInt/object):

(undocumented)

h_Mp (ListOfInt/object):

(undocumented)

h_Mi (ListOfInt/object):

(undocumented)

h_Mx (Pointer/object):

(undocumented)

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)

hip.hipsolver.hipsolverRfGet_Algs(handle, fact_alg, solve_alg)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

fact_alg (Pointer/object):

(undocumented)

solve_alg (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfGetMatrixFormat(handle, format, diag)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

format (Pointer/object):

(undocumented)

diag (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfGetNumericBoostReport(handle, report)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

report (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfGetNumericProperties(handle, zero, boost)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

zero (Pointer/object):

(undocumented)

boost (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfGetResetValuesFastMode(handle, fastMode)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

fastMode (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfRefactor(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfResetValues(int n, int nnzA, csrRowPtrA, csrColIndA, csrValA, 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)

P (ListOfInt/object):

(undocumented)

Q (ListOfInt/object):

(undocumented)

handle (Pointer/object):

(undocumented)

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)

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)

hip.hipsolver.hipsolverRfSetNumericProperties(handle, double effective_zero, double boost_val)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

effective_zero (float/int):

(undocumented)

boost_val (float/int):

(undocumented)

hip.hipsolver.hipsolverRfSetResetValuesFastMode(handle, fastMode)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

fastMode (hipsolverRfResetValuesFastMode_t):

(undocumented)

hip.hipsolver.hipsolverRfSolve(handle, P, Q, int nrhs, Temp, int ldt, XF, int ldxf)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

P (ListOfInt/object):

(undocumented)

Q (ListOfInt/object):

(undocumented)

nrhs (int):

(undocumented)

Temp (Pointer/object):

(undocumented)

ldt (int):

(undocumented)

XF (Pointer/object):

(undocumented)

ldxf (int):

(undocumented)

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)

hip.hipsolver.hipsolverRfBatchAnalyze(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverRfBatchRefactor(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

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)

hip.hipsolver.hipsolverRfBatchSolve(handle, P, Q, int nrhs, Temp, int ldt, XF_array, int ldxf)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

P (ListOfInt/object):

(undocumented)

Q (ListOfInt/object):

(undocumented)

nrhs (int):

(undocumented)

Temp (Pointer/object):

(undocumented)

ldt (int):

(undocumented)

XF_array (Pointer/object):

(undocumented)

ldxf (int):

(undocumented)

hip.hipsolver.hipsolverRfBatchZeroPivot(handle, position)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

position (ListOfInt/object):

(undocumented)

hip.hipsolver.hipsolverSpCreate()#

(No short description, might be part of a group.)

Returns:

A tuple of size 1 that contains (in that order):

hip.hipsolver.hipsolverSpDestroy(handle)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

hip.hipsolver.hipsolverSpSetStream(handle, streamId)#

(No short description, might be part of a group.)

Args:
handle (Pointer/object):

(undocumented)

streamId (ihipStream_t/object):

(undocumented)

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)

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)

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)

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)