getrs_batch_scratchpad_size (Group Version)¶
Computes size of scratchpad memory required for getrs_batch (Group
Version) function. This routine belongs to the
oneapi::mkl::lapack
namespace.
Syntax
-
std::int64_t
getrs_batch_scratchpad_size
(cl::sycl::queue &queue, mkl::transpose *trans, std::int64_t *n, std::int64_t *nrhs, std::int64_t *lda, std::int64_t *ldb, std::int64_t group_count, std::int64_t *group_sizes)¶
Function supports the following precisions and devices.
T |
Devices supported |
---|---|
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
|
Host, CPU, and GPU |
Description
Computes the number of elements of type T the scratchpad memory to be passed to the getrs_batch (Group Version) function should be able to hold.
Input Parameters
- queue
Device queue where calculations will be performed.
- trans
Array of
group_count
parameters transg indicating the form of the equations for the groupg
:If trans = mkl::transpose::nontrans, then
A
i*X
i =B
i is solved forX
i.If trans = mkl::transpose::trans, then
A
iT*X
i =B
i is solved forX
i.If trans = mkl::transpose::conjtrans, then
A
iH*X
i =B
i is solved forX
i.- n
Array of
group_count
parametersn
g specifying the order of the matricesA
i and the number of rows in matricesB
i (0 ≤ ng
) belonging to groupg
.- nrhs
Array of
group_count
parametersnrhs
g specifying the number of right hand sides(0≤nrhsg)
for groupg
.- lda
Array of
group_count
parameterslda
g specifying the leading dimension ofA
i from groupg
.- ldb
Array of
group_count
parametersldb
g specifying the leading dimension ofB
i from groupg
.- group_count
Specifies the number of groups of parameters. Must be at least 0.
- group_sizes
Array of
group_count
integers. Array element with indexg
specifies the number of problems to solve for each of the groups of parametersg
. So the total number of problems to solve,batch_size
, is a sum of all parameter group sizes.
Exceptions
mkl::lapack::exception |
This exception is thrown when an incorrect argument value is supplied. You can determine the position of the incorrect argument by the info() method of the exception object. |
Return Values
The number of elements of type T the scratchpad memory to be passed to the getrs_batch (Group Version) function should be able to hold.