Checks consistency and correctness of the user defined data.
dcgmrhs_check(n, x, nrhs, b, RCI_request, ipar, dpar, tmp)
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.
The routine dcgmrhs_check checks consistency and correctness of the parameters to be passed to the solver routine dcgmrhs. However this operation does not guarantee that the method gives the correct result. It only reduces the chance of making a mistake in the parameters of the method. Advanced users may skip this operation if they are sure that the correct data is specified in the solver parameters.
Users can modify the contents of these arrays after they are passed to the solver routine only if they are sure that the values are correct and consistent. Basic check for correctness and consistency can be done by calling the dcgmrhs_check routine, but it does not guarantee that the method will work correctly.
Note that lengths of all vectors are assumed to have been defined in a previous call to the dcgmrhs_init routine.
To use this routine with the name dcg_check, switch on the compiler preprocessor and include the files mkl_solver.h for C/C++, or mkl_solver.f77 for FORTRAN.
INTEGER. Contains the size of the problem, and the sizes of arrays x and b.
DOUBLE PRECISION matrix of size n by nrhs. Contains the initial approximation to the solution vectors. Normally it is equal to 0 or to b.
INTEGER. This parameter sets the number of right-hand sides.
DOUBLE PRECISION matrix of size (nrhs,n). Contains the right-hand side vectors.
INTEGER. Informs about result of work of the routine.
INTEGER array of size (128+2*nrhs). Refer to the CG Common Parameters.
DOUBLE PRECISION array of size (128+2*nrhs). Refer to the CG Common Parameters.
DOUBLE PRECISION array of size (n, 3+nrhs). Refer to the CG Common Parameters.
The routine completes task normally.
The routine is interrupted, errors occur.
The routine returns some warning messages.
The routine changes some parameters to make them consistent or correct.
The routine returns some warning messages and changes some parameters.
Copyright © 1994 - 2010, Intel Corporation. All rights reserved.