Lines Matching refs:program

86   Check `man taskset` for details. Make sure to set affinity for **your** program,
87 **not** for the `mpiexec` program.
181 human-readable format. This is why your program cannot, for example, look directly
183 - Polymorphism makes changing program behavior as easy as possible, and further
184 abstracts the *intent* of your program from what is *written* in code. You call
197 ### How come when I run the same program on the same number of processes I get a "different" answer?
550 The above is compiled and linked as if it was a console program. The linker will search
581 program.
759 matrix in parallel in your "real" PETSc program with `MatLoad()`.
1149 and forth between an interactive MATLAB session and a running PETSc program. See
1172 ### If I have a sequential program can I use a PETSc parallel solver?
1188 program with
1320 (provider) variant of functions. Thus, as the program runs, it will build up a list of
1325 ### PETSc has so many options for my program that it is hard to keep them straight
1327 Running the PETSc program with the option `-help` will print out many of the options. To
1328 print the options that have been specified within a program, employ `-options_left` to
1329 print any options that the user specified but were not actually used by the program and
1333 …e details in parallel PDE solvers. How can I understand what is really happening within my program?
1359 for your program. See the {ref}`profiling chapter <ch_profiling>` of the users
1636 program test_snes
1670 …textIn,context) ! convert the C pointer to a Fortran pointer to use context as in the main program
1674 end program test_snes
1677 ### In C++ I get a crash on `VecDestroy()` (or some other PETSc object) at the end of the program
1680 the program after `PetscFinalize()`. Use the following code-snippet:
1744 xterm. Once you are sure that the program is hanging, hit control-c in each xterm and then
1940 …ns `-ksp_monitor draw::draw_lg` or `-snes_monitor draw::draw_lg` and the program seems to run OK b…
1945 ### The program seems to use more and more memory as it runs, even though you don't think you are a…