Visible to Intel only — GUID: GUID-4CB407E4-2915-4DA2-BC6F-8A582D856590
Visible to Intel only — GUID: GUID-4CB407E4-2915-4DA2-BC6F-8A582D856590
dfgmres_init
Initializes the solver.
Syntax
dfgmres_init(n, x, b, RCI_request, ipar, dpar, tmp)
Include Files
- Fortran: mkl_rci.fi, mkl_rci.f90
Description
The routine dfgmres_initinitializes the solver. After initialization all subsequent invocations of Intel® oneAPI Math Kernel Library (oneMKL) RCI FGMRES routines use the values of all parameters that are returned bydfgmres_init. Advanced users can skip this step and set the values in the ipar and dpar arrays directly.
You can modify the contents of these arrays after they are passed to the solver routine only if you are sure that the values are correct and consistent. You can perform a basic check for correctness and consistency by calling the dfgmres_check routine, but it does not guarantee that the method will work correctly.
Input Parameters
- n
-
INTEGER. Sets the size of the problem.
- x
-
DOUBLE PRECISION. Array of size n. Contains the initial approximation to the solution vector. Normally it is equal to 0 or to b.
- b
-
DOUBLE PRECISION. Array of size n. Contains the right-hand side vector.
Output Parameters
- RCI_request
-
INTEGER. Gives information about the result of the routine.
- ipar
-
INTEGER. Array of size 128. Refer to the FGMRES Common Parameters.
- dpar
-
DOUBLE PRECISION. Array of size 128. Refer to the FGMRES Common Parameters.
- tmp
-
DOUBLE PRECISION. Array of size ((2*ipar(15) + 1)*n + ipar(15)*(ipar(15) + 9)/2 + 1). Refer to the FGMRES Common Parameters.
Return Values
- RCI_request= 0
-
Indicates that the task completed normally.
- RCI_request= -10000
-
Indicates failure to complete the task.