Lines Matching refs:example

29 algorithms (for example, experimenting with different Krylov subspace
100 example, under the Unix bash shell, a command of the form
144 - `-fp_trap` - stop on floating-point exceptions; for example divide
257 uniprocessor example that
262 the code, we highlight a few of the most important parts of this example.
285 higher level files. For example, <a href="PETSC_DOC_OUT_ROOT_PLACEHOLDER/include/petscksp.h.html">p…
303 example the command `PetscOptionsGetInt(NULL,NULL,"-n",&n,NULL);`
344 Note the use of the PETSc variable type `PetscScalar` in this example.
374 Generally, one then sets the “type” of the matrix, with, for example,
516 Traditional CPUs support the lower two levels via, for example, Intel AVX-like instructions ({any}`…
541 processors over which the object is to be distributed. For example, as
556 The next example, given below,
603 OpenMP parallelism to an MPI code, one must not over-subscribe the hardware resources. For example,…
653 …c code that runs only on the GPU, one can also access and work with (for example, put entries into…
699 This particular example involves
701 …g point operation (flop) rates in this example are because the code solved a tiny system. We inclu…
774 > 1. Make a directory for your source code: for example, `mkdir $HOME/application`
777 > example, `cd $HOME/application`
779 > 3. Copy an example in the directory that corresponds to the
781 > example, `cp $PETSC_DIR/src/snes/tutorials/ex19.c app.c`
789 > to your directory, for example, `cp $PETSC_DIR/share/petsc/Makefile.user makefile`
797 …> - CMake. Copy \$PETSC_DIR/share/petsc/CMakeLists.txt to your directory, for example, `cp $PET…
801 > 5. Run the program, for example,
894 For example, within `TS` one may do
904 This example creates an additive Runge-Kutta ODE/DAE IMEX integrator, whose type name is `TSARKIMEX…
922 … line options, the call to `TSSetType()` must be made \_after\_ `TSSetFromOptions()`). For example:
944 For example
966 where Name and SubName are the type and subtype names (for example, as above `TSARKIMEX` and `3`. M…
967 names in lower case, separated by underscores, and with the word "set" removed. For example,
980 …ty in the MPI example above ({any}`sec_mpi`) by calling `Mat*SetPreallocation()` for a number of d…
1006 …e variants of the "get" routines that give more limited access to the obtained object. For example,
1053 …elsewhere but still need to be deleted when no longer needed. Here is an example of the use of a f…
1064 …ata objects that will be used by the object but are not context data for the function. For example,