dcg_init

Initializes the solver.

Syntax

dcg_init(n, x, b, RCI_request, ipar, dpar, tmp)

Include Files

The Fortran interface is specified in the mkl_rci.fi include file and the C interface is specified in the mkl_rci.h include file.

Description

The routine dcg_init initializes the solver. After initialization, all subsequent invocations of the Intel MKL RCI CG routines use the values of all parameters returned by the routine dcg_init. Advanced users can skip this step and set these parameters directly in the appropriate routines.

Warning iconWarning

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 dcg_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 CG Common Parameters.

dpar

DOUBLE PRECISION array of size 128. Refer to the CG Common Parameters.

tmp

DOUBLE PRECISION array of size (n,4). Refer to the CG Common Parameters.

Return Values

RCI_request= 0

Indicates that the task completed normally.

RCI_request= -10000

Indicates failure to complete the task.


Submit feedback on this help topic

Copyright © 1994 - 2011, Intel Corporation. All rights reserved.