Actual source code: test23.c
slepc-3.18.2 2023-01-26
1: /*
2: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3: SLEPc - Scalable Library for Eigenvalue Problem Computations
4: Copyright (c) 2002-, Universitat Politecnica de Valencia, Spain
6: This file is part of SLEPc.
7: SLEPc is distributed under a 2-clause BSD license (see LICENSE).
8: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
9: */
11: static char help[] = "Test EPS view and monitor functionality.\n\n";
13: #include <slepceps.h>
15: int main(int argc,char **argv)
16: {
17: Mat A;
18: EPS eps;
19: PetscInt n=6,Istart,Iend,i;
22: SlepcInitialize(&argc,&argv,(char*)0,help);
23: PetscOptionsGetInt(NULL,NULL,"-n",&n,NULL);
24: PetscPrintf(PETSC_COMM_WORLD,"\nEPS of diagonal problem, n=%" PetscInt_FMT "\n\n",n);
26: /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
27: Generate the matrix
28: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
29: MatCreate(PETSC_COMM_WORLD,&A);
30: MatSetSizes(A,PETSC_DECIDE,PETSC_DECIDE,n,n);
31: MatSetFromOptions(A);
32: MatSetUp(A);
33: MatGetOwnershipRange(A,&Istart,&Iend);
34: for (i=Istart;i<Iend;i++) MatSetValue(A,i,i,i+1,INSERT_VALUES);
35: MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);
36: MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);
38: /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
39: Create the EPS solver
40: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
41: EPSCreate(PETSC_COMM_WORLD,&eps);
42: PetscObjectSetName((PetscObject)eps,"eps");
43: EPSSetOperators(eps,A,NULL);
44: EPSSetFromOptions(eps);
46: /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
47: Solve the eigensystem and display solution
48: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
49: EPSSolve(eps);
50: EPSErrorView(eps,EPS_ERROR_RELATIVE,NULL);
51: EPSDestroy(&eps);
52: MatDestroy(&A);
53: SlepcFinalize();
54: return 0;
55: }
57: /*TEST
59: test:
60: suffix: 1
61: args: -eps_error_backward ::ascii_info_detail -eps_largest_real -eps_balance oneside -eps_view_values -eps_monitor_conv -eps_error_absolute ::ascii_matlab -eps_monitor_all -eps_converged_reason -eps_view
62: requires: !single
63: filter: grep -v "tolerance" | sed -e "s/hermitian/symmetric/" -e "s/[+-]0\.0*i//g" -e "s/\([1-6]\.\)[+-][0-9]\.[0-9]*e-[0-9]*i/\\1/g" -e "s/[0-9]\.[0-9]*e-\([0-9]*\)/removed/g"
65: test:
66: suffix: 2
67: args: -n 20 -eps_largest_real -eps_monitor -eps_view_values ::ascii_matlab
68: requires: double
69: filter: sed -e "s/[+-][0-9]\.[0-9]*e-[0-9]*i//" -e "s/[0-9]\.[0-9]*e-\([0-9]*\)/removed/g" -e "s/2\.[0-9]*e+01/2.0000000000000000e+01/" -e "s/1\.9999999999[0-9]*e+01/2.0000000000000000e+01/"
71: test:
72: suffix: 3
73: args: -n 20 -eps_largest_real -eps_monitor draw::draw_lg -eps_monitor_all draw::draw_lg -eps_view_values draw -draw_save myeigen.ppm -draw_virtual
74: requires: x double
76: TEST*/