Tutorial C API ============== Intro ----- Alien provide a C API for C codes. This tutorial illustrates how to build a linear system and solve it with various linear solver algorithm with the C API. We consider the Laplacian problem on a 2D square mesh of size :math:`N_X \times N_Y`. Unknowns are related to the mesh nodes indexed by :math:`(i,j)`. We use a 5-Points stencil to discretize the problem. First of all Alien provides tools to initialize the library, the MPI parallel environment to parametrize IO. The following code illustrates how to initialize : - the ParallelMng object - the TraceMng object .. code-block:: bash int nprocs, my_rank, domain_offset ; MPI_Comm comm; /* * MPI Initialization */ MPI_Init(&argc,&argv) ; comm = MPI_COMM_WORLD ; MPI_Comm_size(comm,&nprocs) ; MPI_Comm_rank(comm,&my_rank) ; printf("NPROCS %d RANK %d \n",nprocs,my_rank); /* * INITIALIZE ALIEN */ ALIEN_init(argc,argv) ; Linear System Set Up -------------------- The Matrix concept represents a set of :math:`N_i` linear equations (rows) :math:`(y_i)` of :math:`N_j` unknowns :math:`(x_j)` (columns). This represents a linear application :math:`S_X \mapsto S_Y` with :math:`x \in S_X`, :math:`y \in S_Y` and :math:`x \mapsto y=A*x`. Usually the dimension of :math:`S_X` and :math:`S_Y` are equal, :math:`N_i=N_j`. In that case the matrix is square. A linear system is a set of a Matrix A, two vectors B the right hand side and X the solution of the system A*X=B .. code-block:: bash int i,k, r; int system_id, solver_id, error; int global_nrows, local_nrows, nb_ghosts ; int row_size, local_nnz ; int* row_offset, *ghost_owners; uid_type *row_uids, *col_uids, *ghost_uids ; double diag_values, offdiag_values, rhs_value, norm2, err, err2, gnorm2, gerr2 ; double *matrix_values, *rhs_values, *solution_values, *ref_solution_values ; /* * CREATE LINEAR SYSTEM A*X=B : MATRIX A, VECTOR SOLUTION X, VECTOR RHS B */ system_id = ALIEN_create_linear_system(comm) ; printf("SYSTEM ID %d: \n",system_id); /* * DEFINE MATRIX PROFILE */ global_nrows = 32 ; local_nrows = global_nrows / nprocs ; r = global_nrows % nprocs ; if(my_rank < r) { ++local_nrows ; domain_offset = my_rank*local_nrows ; } else { domain_offset = my_rank * local_nrows + r ; } row_uids = (uid_type*) malloc(local_nrows*sizeof(uid_type)) ; row_offset = (int*) malloc((local_nrows+1)*sizeof(int)) ; row_offset[0] = 0 ; for(i=0;i0) { ghost_uids[nb_ghosts] = domain_offset-1 ; ghost_owners[nb_ghosts] = my_rank-1 ; ++nb_ghosts ; } if(my_rank