KmlScaissGmresSetUserPreconditioner?I
Associate with user-defined preconditioners for callback. This interface is not required if no user-defined preconditioner is used.
Interface Definition
C interface:
int KmlScaissGmresSetUserPreconditionerSI(KmlScasolverTask **handle, void *ustruct, int (*fptr)(void *ustruct, float *x));
int KmlScaissGmresSetUserPreconditionerDI(KmlScasolverTask **handle, void *ustruct, int (*fptr)(void *ustruct, double *x));
Parameters
Parameter |
Type |
Description |
Input/Output |
|---|---|---|---|
handle |
KmlScasolverTask ** |
Solver handle, which is a variable passed from a previous step. |
Input/Output |
ustruct |
void * |
Pointer to user data. This parameter is transferred as the first parameter each time the preconditioner is called. |
Input |
(*fptr) |
int |
User-defined function pointer to the callback function. The callback function performs calculation between the preconditioner and its second parameter. |
Input |
Return Value
Return Value |
Type |
Description |
|---|---|---|
KMLSS_NO_ERROR |
int |
The execution is successful. |
KMLSS_NULL_ARGUMENT |
int |
A null argument exists in {handle, fptr}. |
Dependencies
#include "kml_scaiss.h"
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | // USER data struct typedef struct { int n; const int *ia; const int *ja; const double *a; } duser; int diagonal_preconditioner(void *usr, double *x) { duser *u = (duser *)usr; int i, j; /* Apply diagonal preconditioner*/ for (i = 0; i < u->n; i++) { for (j = u->ia[i]; j < u->ia[i + 1]; j++) { if (u->ja[j] == i) x[i] /= u->a[j]; } } return 0; } MPI_Init(NULL, NULL); int size, rank; MPI_Comm_size(MPI_COMM_WORLD, &size);// Obtain the total number of processes. MPI_Comm_rank(MPI_COMM_WORLD, &rank);// Obtain the current rank. int mat_size = 8; int n = mat_size / size; int n_beg = n * rank; if (n * size != mat_size && rank == (size - 1)) { n = mat_size - n * rank; } int ja[26] = { 0, 3, 4, 1, 2, 3, 5, 1, 2, 7, 0, 1, 3, 6, 0, 4, 5, 1, 4, 5, 7, 3, 6, 2, 5, 7 }; double a[26] = { 1.0, 1.0, 2.0, 9.0, 2.0, 1.0, -3.0, 2.0, 3.0, 2.0, 1.0, 1.0, 9.0, -5.0, 2.0, 6.0, 1.0, -3.0, 1.0, 4.0, 1.0, -5.0, 7.0, 2.0, 1.0, 2.0 }; int ia[9] = { 0, 3, 7, 10, 14, 17, 21, 23, 26 }; int a_beg = ia[n_beg]; for (int i = n_beg; i < (n_beg + n + 1); i++) { ia[i] -= a_beg; } /* Internal KML_SCAISS structure */ KmlScasolverTask *handle; /* KML_SCAISS control parameters */ int error; /* Output error handle */ /* Create data structures */ const double *a_holder = &a[a_beg]; const int *ja_holder = &ja[a_beg]; const int *ia_holder = &ia[n_beg]; error = KmlScaissGmresInitStripesDI(&handle, mat_size, 1, &n, &n_beg, &a_holder, &ja_holder, &ia_holder, MPI_COMM_WORLD); duser prea; prea.n = n; prea.ia = &ia[n_beg]; prea.ja = &ja[a_beg]; prea.a = &a[a_beg]; error = KmlScaissGmresSetUserPreconditionerDI(&handle, &prea, &diagonal_preconditioner); if (error != 0) { printf("\nERROR in KmlScaissGmresSetUserPreconditionerDI: %d", error); return 1; } |