| /petsc/doc/developers/ |
| H A D | testing.md | 545 $ make print-test test-fail=1 548 To print it out in a column format: 551 $ make print-test test-fail=1 | tr ' ' '\n' | sort 598 -h ................ help: print this message 629 In this case, you can use the `-p` flag to print just the first 630 command. It will print a command suitable for running from 645 /usr/bin/gmake --no-print-directory test <options> 661 PRINTONLY=1 Print the command, but do not run. For loops print first command 675 /usr/bin/gmake --no-print-directory test search='sys*ex2*' 677 /usr/bin/gmake --no-print-directory test s='sys*ex2*' [all …]
|
| /petsc/src/tao/unconstrained/tutorials/ |
| H A D | convergencestudy.m | 32 print('convergencestudy-h','-depsc'); 42 print('convergencestudy-h-2','-depsc'); 70 print('convergencestudy-p','-depsc'); 80 print('convergencestudy-p-2','-depsc');
|
| H A D | convergencestudyburger.m | 25 print('convergencestudy-burgers','-depsc');
|
| /petsc/src/benchmarks/results/ |
| H A D | performance_cfd_2_10.m | 20 % print -dps performance_cfd_2_10_1.ps 40 % print -dps performance_cfd_2_10_2.ps
|
| /petsc/systems/Apple/OSX/examples/PETSc cocoa example/PETSc cocoa example/ |
| H A D | AppDelegate.m | 14 This is called by PETSc for all print calls. 16 …Need to create a place in Cocoa to put the print messages; commented out code below is from iOS ex…
|
| /petsc/src/binding/petsc4py/docs/ipynb/ |
| H A D | dmplex.ipynb | 96 …ion lower which make up that entity. So we can loop through the chart and print out each points' c… 139 " print(\"point =\", i, \"\\tcone =\", plex.getCone(i))" 194 " print(\"point =\", i, \"\\tsupport =\", plex.getSupport(i))" 230 " print(\"label name = %s\" % name, \"\\tlabel size = %d\" % plex.getLabelSize(name))" 237 …re 3 different entries. Now we will loop over each item in the DMPlex and print the value of the l… 279 " print(\"point =\",i, \"\\tlabel(depth) = %d\" % plex.getLabelValue(\"depth\",i))" 306 …" print(\"depth = %d\" % i,\"\\tdepth stratum = \",plex.getDepthStratum(i),\"\\theight stratum … 359 " print(\"point =\", i, \"\\tlabel(boundary) = %d\" % plex.getLabelValue(\"boundary\",i))" 366 …ID we can get the PETSc IS for the 'depth' label for a value of 0 (again view doesn't print here)." 424 "print(\"meet =\",plex.getMeet(pnts),\"\\tjoin =\",plex.getJoin(pnts))" [all …]
|
| /petsc/doc/manualpages/MANSECHeaders/ |
| H A D | Viewer | 4 PETSc viewers `PetscViewer` print, display, and export information and data from PETSc objects in a…
|
| /petsc/systems/Apple/iOS/examples/SwiftExample/SwiftExample/ |
| H A D | AppDelegate.swift | 21 print(result) in PetscVFPrintfiPhone()
|
| /petsc/src/dm/impls/plex/tutorials/ |
| H A D | ex20.c | 16 PetscBool isda, isplex, print = PETSC_FALSE; in main() local 27 PetscCall(PetscOptionsGetBool(NULL, NULL, "-ex20_print", &print, NULL)); in main() 186 if (print) PetscCall(MatView(H, PETSC_VIEWER_STDOUT_WORLD)); in main() 215 if (print) PetscCall(MatView(Q, PETSC_VIEWER_STDOUT_WORLD)); in main()
|
| /petsc/ |
| H A D | gmakefile.test | 81 TESTFLAGS += -p # Pass -p to petscdiff to print only command 252 realpath-py = $(shell $(PYTHON) -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' $(1)) 412 .PHONY: report_tests print-test 414 print-test: 459 -@echo " getversion - print the PETSc version, or $PETSC_DIR/lib/petsc/bin/petscversion" 460 -@echo " getmpiexec - print the mpiexec to use to run PETSc programs" 461 -@echo " getlinklibs - print the libraries that a PETSc application must link against" 462 …-@echo " getincludedirs - print the include directories that a PETSc application must be compile… 463 -@echo " getcflags - print the C compiler flags PETSc is using" 464 -@echo " getcxxflags - print the C++ compiler flags PETSc is using" [all …]
|
| H A D | gmakefile | 22 PETSC_VERSION_MAJOR := $(shell awk '/define PETSC_VERSION_MAJOR/{print $$3;}' ./include/petscversio… 23 PETSC_VERSION_MINOR := $(shell awk '/define PETSC_VERSION_MINOR/{print $$3;}' ./include/petscversio… 24 PETSC_VERSION_SUBMINOR := $(shell awk '/define PETSC_VERSION_SUBMINOR/{print $$3;}' ./include/petsc… 25 PETSC_VERSION_RELEASE := $(shell awk '/define PETSC_VERSION_RELEASE/{print $$3;}' ./include/petscve… 269 .PHONY: clean all print clang-tidy 274 # make print VAR=the-variable 275 print:
|
| /petsc/src/mat/graphops/coarsen/impls/hem/ |
| H A D | hem.c | 688 PetscBool isOK = PETSC_TRUE, print = PETSC_FALSE; in MatCoarsenApply_HEM_private() local 690 if (print) in MatCoarsenApply_HEM_private() 697 …if (print) PetscCall(PetscSynchronizedPrintf(comm, "\t[%d] active edge (%" PetscInt_FMT " %" Petsc… in MatCoarsenApply_HEM_private() 700 if (print) in MatCoarsenApply_HEM_private() 708 if (print) in MatCoarsenApply_HEM_private() 716 if (print) in MatCoarsenApply_HEM_private() 724 if (print) in MatCoarsenApply_HEM_private() 754 if (print) in MatCoarsenApply_HEM_private() 757 …if (!isOK && print) PetscCall(PetscSynchronizedPrintf(comm, "\t\t[%d] skip edge (%" PetscInt_FMT "… in MatCoarsenApply_HEM_private() 778 if (print) in MatCoarsenApply_HEM_private() [all …]
|
| /petsc/doc/manual/ |
| H A D | tests.md | 110 The `print-test` target helps with this: 113 $ make print-test argsearch='cuda' 120 $ make print-test
|
| /petsc/src/snes/tutorials/ |
| H A D | build.zig | 21 …if (path) |value| {exe.addLibPath(value);} else |_| {std.debug.print("Error bad path: {s}\n", .{p…
|
| /petsc/src/ksp/ksp/tests/output/ |
| H A D | ex32_cholmod.out | 42 Common.print 3
|
| H A D | ex32_cholmod_sbaij.out | 42 Common.print 3
|
| /petsc/systems/Apple/iOS/examples/Basic/Classes/ |
| H A D | iphoneViewController.m | 72 This is called by PETSc for all print calls.
|
| /petsc/systems/Apple/iOS/examples/testopengl/Classes/ |
| H A D | iphoneViewController.m | 100 This is called by PETSc for all print calls.
|
| /petsc/doc/changes/ |
| H A D | 2016.md | 99 to print to stdout as one would expect. I.e., the output from
|
| H A D | 310.md | 95 additionally print the (estimate of) the operator's norm.
|
| H A D | 39.md | 120 PETSc default monitor names, also now print with the same format
|
| H A D | dev.md | 27 - Add `PetscCallHYPRE()` to check HYPRE error codes and print error messages on failure
|
| /petsc/src/mat/impls/sbaij/seq/cholmod/ |
| H A D | sbaijcholmod.c | 118 CHOLMOD_OPTION_INT(print, "Verbosity level"); in CholmodSetOptions() 328 PetscCall(PetscViewerASCIIPrintf(viewer, "Common.print %d\n", c->print)); in MatView_Info_CHOLMOD()
|
| /petsc/src/ksp/pc/impls/bddc/ |
| H A D | bddcprivate.c | 174 PetscBool print, eerr, done, lrc[2], conforming, global, setprimal; in PCBDDCNedelecSupport() local 185 print = PETSC_FALSE; in PCBDDCNedelecSupport() 192 …PetscCall(PetscOptionsBool("-pc_bddc_nedelec_print", "Print debug info", NULL, print, &print, NULL… in PCBDDCNedelecSupport() 452 if (print) { in PCBDDCNedelecSupport() 657 if (print) { in PCBDDCNedelecSupport() 698 …if (print) PetscCall(PetscPrintf(PETSC_COMM_SELF, "SPLITPOINT %" PetscInt_FMT " (%s %s %s)\n", i, … in PCBDDCNedelecSupport() 702 if (print) PetscCall(PetscPrintf(PETSC_COMM_SELF, "ENDPOINT %" PetscInt_FMT "\n", i)); in PCBDDCNedelecSupport() 705 … if (print) PetscCall(PetscPrintf(PETSC_COMM_SELF, "CORNER CANDIDATE %" PetscInt_FMT "\n", i)); in PCBDDCNedelecSupport() 714 if (print) PetscCall(PetscPrintf(PETSC_COMM_SELF, "INSPECTING CANDIDATES\n")); in PCBDDCNedelecSupport() 731 … if (print) PetscCall(PetscPrintf(PETSC_COMM_SELF, " CANDIDATE %" PetscInt_FMT " CLEARED\n", i)); in PCBDDCNedelecSupport() [all …]
|
| /petsc/src/ts/tests/ |
| H A D | ex30.c | 41 PetscBool print; member 379 if (!printCtx->print && !printCtx->print_entropy) PetscFunctionReturn(PETSC_SUCCESS); in PostStep() 439 if (printCtx->print && printCtx->g_target >= 0) { in PostStep() 542 printCtx->print = PETSC_TRUE; in go() 543 } else printCtx->print = PETSC_FALSE; in go()
|