| /petsc/src/sys/classes/draw/interface/ |
| H A D | draw.c | 166 PetscErrorCode PetscDrawGetTitle(PetscDraw draw, const char *title[]) in PetscDrawGetTitle() argument 170 PetscAssertPointer(title, 2); in PetscDrawGetTitle() 171 *title = draw->title; in PetscDrawGetTitle() 197 PetscErrorCode PetscDrawSetTitle(PetscDraw draw, const char title[]) in PetscDrawSetTitle() argument 201 PetscAssertPointer(title, 2); in PetscDrawSetTitle() 202 PetscCall(PetscFree(draw->title)); in PetscDrawSetTitle() 203 PetscCall(PetscStrallocpy(title, &draw->title)); in PetscDrawSetTitle() 204 PetscTryTypeMethod(draw, settitle, draw->title); in PetscDrawSetTitle() 225 PetscErrorCode PetscDrawAppendTitle(PetscDraw draw, const char title[]) in PetscDrawAppendTitle() argument 229 if (title) PetscAssertPointer(title, 2); in PetscDrawAppendTitle() [all …]
|
| /petsc/doc/ |
| H A D | petsc.bib | 25 title = {{D}-stability and {K}aps-{R}entrop-methods}, 36 title = {Implementation of {R}osenbrock methods}, 47 title = {Solving ordinary differential equations {II}}, 55 …title = {Generalized {R}unge--{K}utta methods of order four with stepsize control for sti… 65 title = {Numerical methods for ordinary differential equations}, 73 …title = {A Time Integration Algorithm for Structural Dynamics With Improved Numerical Dis… 87 title = {Analysis and implementation of {TR-BDF2}}, 98 title = {Diagonally implicit {R}unge--{K}utta methods for stiff {ODE}s}, 108 title = {Adaptive relaxed {ADMM}: Convergence theory and practical implementation}, 116 title = {Time-step limits for stable solutions of the ice-sheet equation}, [all …]
|
| /petsc/lib/petsc/bin/maint/ |
| H A D | htmltemplate.py | 2 def getHeader(title): argument 9 """+title+""" 111 """+title+"""
|
| /petsc/share/petsc/bin/ |
| H A D | dmnetwork_view.py | 241 def display(self, opts: DisplayOptions, title): argument 289 title = (opts.setTitle, (0, 0, 0, 1)) 290 if title is None: 291 title = ("Network", (0, 0, 0, 1)) 293 title = (title[0] + " (Rank " + str(self.id) + ")", title[1]) 294 axis.set_title(title[0], color=title[1]) 395 title = None 423 title = (row['Name'], titleColor) 444 globalRank.display(opts, title) 448 ranks[rank].display(opts, title) [all …]
|
| /petsc/src/sys/classes/viewer/impls/draw/ |
| H A D | drawv.c | 17 PetscCall(PetscFree(vdraw->title)); in PetscViewerDestroy_Draw() 119 PetscErrorCode PetscViewerDrawSetInfo(PetscViewer v, const char display[], const char title[], int … in PetscViewerDrawSetInfo() argument 131 PetscCall(PetscStrallocpy(title, &vdraw->title)); in PetscViewerDrawSetInfo() 137 PetscErrorCode PetscViewerDrawSetTitle(PetscViewer v, const char title[]) in PetscViewerDrawSetTitle() argument 148 PetscCall(PetscFree(vdraw->title)); in PetscViewerDrawSetTitle() 149 PetscCall(PetscStrallocpy(title, &vdraw->title)); in PetscViewerDrawSetTitle() 153 PetscErrorCode PetscViewerDrawGetTitle(PetscViewer v, const char *title[]) in PetscViewerDrawGetTitle() argument 164 *title = vdraw->title; in PetscViewerDrawGetTitle() 213 PetscErrorCode PetscViewerDrawOpen(MPI_Comm comm, const char display[], const char title[], int x, … in PetscViewerDrawOpen() argument 218 PetscCall(PetscViewerDrawSetInfo(*viewer, display, title, x, y, w, h)); in PetscViewerDrawOpen() [all …]
|
| H A D | vdraw.h | 17 char *title; member
|
| /petsc/config/BuildSystem/ |
| H A D | help.py | 18 def setTitle(self, title): argument 19 self._title = str(title) 20 title = property(getTitle, setTitle, None, 'Title of the Information Menu') variable in Info 43 title = self.title 45 f.write('{}\n{}\n'.format(title, divider)) 79 self.title = 'Help'
|
| H A D | logger.py | 339 def logPrintWarning(self, msg, title = None, **kwargs): argument 340 if title is None: 341 title = 'WARNING' 342 return self.logPrintBox(msg,title='***** {} *****'.format(title),**kwargs) 344 …el = -1, debugSection = 'screen', indent = 1, comm = None, rmDir = 1, prefix = None, title = None): argument 346 rmDir = build_multiline_message(title, self.logStripDirectory(msg), prefix=prefix) 347 msg = build_multiline_message(title, msg, prefix=prefix)
|
| /petsc/src/sys/classes/draw/tests/ |
| H A D | ex6.c | 55 char title[64], cmap[32] = ""; in main() local 63 PetscCall(PetscSNPrintf(title, sizeof(title), "Colormap: %s", cmap)); in main() 65 …PetscCall(PetscDrawCreate(PETSC_COMM_WORLD, NULL, title, PETSC_DECIDE, PETSC_DECIDE, PETSC_DECIDE,… in main()
|
| /petsc/src/sys/classes/viewer/impls/draw/draw/ |
| H A D | fdrawv.c | 53 char *title = vdraw->title, tmp_str[128]; in PetscViewerDrawGetDraw() local 55 …tscSNPrintf(tmp_str, sizeof(tmp_str), "%s:%" PetscInt_FMT, vdraw->title ? vdraw->title : "", windo… in PetscViewerDrawGetDraw() 56 title = tmp_str; in PetscViewerDrawGetDraw() 58 …PetscCall(PetscDrawCreate(PetscObjectComm((PetscObject)viewer), vdraw->display, title, PETSC_DECID… in PetscViewerDrawGetDraw()
|
| /petsc/src/sys/classes/draw/impls/x/ |
| H A D | drawopenx.c | 56 PetscErrorCode PetscDrawOpenX(MPI_Comm comm, const char display[], const char title[], int x, int y… in PetscDrawOpenX() argument 59 PetscCall(PetscDrawCreate(comm, display, title, x, y, w, h, draw)); in PetscDrawOpenX()
|
| /petsc/src/benchmarks/ |
| H A D | benchmarkExample.py | 179 from pylab import legend, plot, show, title, xlabel, ylabel 188 title('Performance on '+library+' Example '+str(num)) 196 from pylab import close, legend, plot, savefig, show, title, xlabel, ylabel 215 title('Performance on '+library+' Example '+str(num)) 226 from pylab import legend, plot, savefig, semilogy, show, title, xlabel, ylabel 243 title('Performance on '+library+' Example '+str(num)) 254 from pylab import legend, plot, savefig, semilogy, show, title, xlabel, ylabel 271 title('Performance on '+library+' Example '+str(num)) 282 from pylab import legend, plot, show, title, xlabel, ylabel 295 title('Performance on '+library+' Example '+str(num)) [all …]
|
| H A D | benchmarkAssembly.py | 36 from pylab import legend, plot, show, title, xlabel, ylabel, ylim 51 title('Performance on '+library+' Example '+str(num)) 66 title('Performance on '+library+' Example '+str(num)) 80 title('Performance on '+library+' Example '+str(num))
|
| /petsc/src/benchmarks/results/ |
| H A D | performance_medium.m | 8 title('Iterative Solve: GMRES(30) with ILU(0)'); 28 title('Matrix-vector Product');
|
| H A D | performance_cfd_2_10.m | 8 title('Iterative Solve: GMRES(30) with ILU(0). Matrix: cfd.2.10, N=122880, NZ=4134400'); 28 title('Matrix-vector Product Matrix: cfd.2.10, N=122880, NZ=4134400');
|
| H A D | performance_arco1.m | 8 title('Iterative Solve: GMRES(30) with ILU(0). Matrix: arco1, N=1501, NZ=26131'); 34 title('Matrix-vector Product. Matrix: arco1, N=1501, NZ=26131');
|
| /petsc/share/petsc/matlab/ |
| H A D | UFgetPetscMat.m | 27 title (sprintf ('%s:%s', Problem.name, Problem.title')) ;
|
| /petsc/src/binding/petsc4py/demo/legacy/perftest/ |
| H A D | driver.py | 51 pylab.title('z=0.50') 62 pylab.title('y=0.25') 73 pylab.title('x=0.50')
|
| /petsc/src/sys/webclient/ |
| H A D | google.c | 124 char head[1024], buff[8 * 1024], *body, *title; in PetscGoogleDriveUpload() local 175 PetscCall(PetscStrstr(buff, "\"title\"", &title)); in PetscGoogleDriveUpload() 176 PetscCheck(title, PETSC_COMM_SELF, PETSC_ERR_LIB, "Upload of file %s failed", filename); in PetscGoogleDriveUpload()
|
| H A D | box.c | 273 char head[1024], buff[8 * 1024], *body, *title; in PetscBoxUpload() local 324 PetscCall(PetscStrstr(buff, "\"title\"", &title)); in PetscBoxUpload() 325 PetscCheck(title, PETSC_COMM_SELF, PETSC_ERR_LIB, "Upload of file %s failed", filename); in PetscBoxUpload()
|
| /petsc/src/sys/objects/ |
| H A D | aoptions.c | 35 …nItems PetscOptionsObject, MPI_Comm comm, const char prefix[], const char title[], const char mans… in PetscOptionsBegin_Private() argument 39 PetscAssertPointer(title, 4); in PetscOptionsBegin_Private() 43 …PetscCall(PetscOptionsHelpPrintedCheck(PetscOptionsHelpPrintedSingleton, prefix, title, &PetscOpti… in PetscOptionsBegin_Private() 50 PetscCall(PetscStrallocpy(title, &PetscOptionsObject->title)); in PetscOptionsBegin_Private() 53 …ct)) PetscCall((*PetscHelpPrintf)(comm, "----------------------------------------\n%s:\n", title)); in PetscOptionsBegin_Private() 62 char title[256]; in PetscObjectOptionsBegin_Private() local 72 if (flg) PetscCall(PetscSNPrintf(title, sizeof(title), "%s options", obj->class_name)); in PetscObjectOptionsBegin_Private() 73 …else PetscCall(PetscSNPrintf(title, sizeof(title), "%s (%s) options", obj->description, obj->class… in PetscObjectOptionsBegin_Private() 74 …PetscCall(PetscOptionsBegin_Private(PetscOptionsObject, obj->comm, obj->prefix, title, obj->mansec… in PetscObjectOptionsBegin_Private() 173 PetscCallSAWs(SAWs_Register, (dir, &PetscOptionsObject->title, 1, SAWs_READ, SAWs_STRING)); in PetscOptionsSAWsInput() [all …]
|
| /petsc/doc/manualpages/doctext/ |
| H A D | html.def | 52 # Only do the actual title 53 # Without a title, the page will be broken.
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | Viewer.pyx | 383 title: str | None = None, 396 title 397 The window title or `None` for no title. 414 title = str2bytes(title, &ctitle) 880 title: str | None = None, 892 title 893 The window title or `None` for no title. 907 title = str2bytes(title, &ctitle)
|
| /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/ |
| H A D | main.py | 391 group_general = parser.add_argument_group(title='General options') 402 group_libclang = parser.add_argument_group(title='libClang location settings') 408 group_petsc = parser.add_argument_group(title='PETSc location settings') 412 group_test = parser.add_argument_group(title='Testing settings') 416 group_diag = parser.add_argument_group(title='Diagnostics settings')
|
| /petsc/share/petsc/datafiles/matrices/ |
| H A D | LFAT5.mtx | 11 % fields: name title A id notes aux date author ed kind
|