Home
last modified time | relevance | path

Searched refs:ylabel (Results 1 – 20 of 20) sorted by relevance

/petsc/src/tao/unconstrained/tutorials/
H A Dconvergencestudy.m23 ylabel('Analytic Error');
26 ylabel('Objective function');
41 ylabel('Analytic Error');
62 ylabel('Analytic Error');
65 ylabel('Objective function');
79 ylabel('Analytic Error');
H A Dadjointreads.m57 ylabel('f(x)- objective');
77 % ylabel('f(x)- objective');
92 % ylabel('Error solution');
108 % ylabel('Diffusion solution (Data assimilation)');
132 % ylabel('f(x)- objective');
150 % ylabel('Gradient');
162 % ylabel('Cost function');
H A Dconvergencestudyburger.m24 ylabel('Analytic Error');
/petsc/src/sys/classes/draw/tests/
H A Dex12.c12 const char *xlabel, *ylabel, *toplabel; in main() local
21 ylabel = "Y-axis Label"; in main()
28 ylabel = NULL; in main()
39 PetscCall(PetscDrawAxisSetLabels(axis, toplabel, xlabel, ylabel)); in main()
H A Dex3.c20 const char *xlabel, *ylabel, *toplabel, *legend; in main() local
26 ylabel = "Y-axis Label"; in main()
44 if (flg) ylabel = NULL; in main()
49 ylabel = NULL; in main()
62 PetscCall(PetscDrawAxisSetLabels(axis, toplabel, xlabel, ylabel)); in main()
H A Dex9.c14 const char *xlabel, *ylabel, *toplabel; in main() local
20 ylabel = "Y-axis Label"; in main()
37 ylabel = NULL; in main()
47 PetscCall(PetscDrawAxisSetLabels(axis, toplabel, xlabel, ylabel)); in main()
/petsc/src/benchmarks/
H A DbenchmarkExample.py179 from pylab import legend, plot, show, title, xlabel, ylabel
190 ylabel('Time (s)')
196 from pylab import close, legend, plot, savefig, show, title, xlabel, ylabel
217 ylabel('Time (s)')
226 from pylab import legend, plot, savefig, semilogy, show, title, xlabel, ylabel
245 ylabel('Computation Rate (GF/s)')
254 from pylab import legend, plot, savefig, semilogy, show, title, xlabel, ylabel
273 ylabel('Computation Rate (GF/s)')
282 from pylab import legend, plot, show, title, xlabel, ylabel
297 ylabel('Time (s)')
[all …]
H A DbenchmarkAssembly.py36 from pylab import legend, plot, show, title, xlabel, ylabel, ylim
53 ylabel('Time (s)')
68 ylabel('Time/Row (s)')
82 ylabel('Time/Nonzero (ns)')
/petsc/src/sys/classes/draw/utils/
H A Daxisc.c46 ad->ylabel = NULL; in PetscDrawAxisCreate()
76 PetscCall(PetscFree((*axis)->ylabel)); in PetscDrawAxisDestroy()
131 …scDrawAxisSetLabels(PetscDrawAxis axis, const char top[], const char xlabel[], const char ylabel[]) in PetscDrawAxisSetLabels() argument
136 PetscCall(PetscFree(axis->ylabel)); in PetscDrawAxisSetLabels()
139 PetscCall(PetscStrallocpy(ylabel, &axis->ylabel)); in PetscDrawAxisSetLabels()
290 if (axis->ylabel) dxl += 2.0 * tw; in PetscDrawAxisDraw()
372 if (axis->ylabel) { in PetscDrawAxisDraw()
376 PetscCall(PetscStrlen(axis->ylabel, &len)); in PetscDrawAxisDraw()
377 PetscCall(PetscDrawStringVertical(draw, x, y + ((PetscReal)len) * th / 2, cc, axis->ylabel)); in PetscDrawAxisDraw()
/petsc/src/benchmarks/results/
H A Dperformance_medium.m7 ylabel('MFlops');
27 ylabel('MFlops');
H A Dperformance_cfd_2_10.m7 ylabel('MFlops');
27 ylabel('MFlops');
H A Dperformance_arco1.m7 ylabel('MFlops');
33 ylabel('MFlops');
/petsc/src/binding/petsc4py/demo/legacy/perftest/
H A Ddriver.py53 pylab.ylabel('y')
64 pylab.ylabel('z')
75 pylab.ylabel('z')
/petsc/src/binding/petsc4py/demo/legacy/ode/
H A Drober.py95 pylab.ylabel('timestep')
101 pylab.ylabel('x%d' % i)
H A Dorego.py126 pylab.ylabel('timestep')
132 pylab.ylabel('$x_%d$' % i)
H A Dheat.py111 pylab.ylabel('$u$')
/petsc/lib/petsc/bin/
H A Dpetsc_tas_analysis.py779 …axMeshConv.set(xlabel='Problem Size $\log N$', ylabel='Error $\log |x - x^*|$', title='Mesh Conver…
784 axStatScale.set(xlabel='Time(s)', ylabel='Flop Rate (F/s)', title='Static Scaling')
789 axStatScale.set(xlabel='Time(s)', ylabel='DoF Rate (DoF/s)', title='Static Scaling')
794 axEffic.set(xlabel='Time(s)', ylabel='Error Time', title='Efficacy')
/petsc/include/petsc/private/
H A Ddrawimpl.h107 char *xlabel, *ylabel, *toplabel; member
/petsc/src/binding/petsc4py/demo/legacy/bratu3d/
H A Dbratu3d.py199 pylab.ylabel('Y')
/petsc/src/ts/interface/
H A Dtsmon.c447 const char *ylabel = ctx->semilogy ? "Log Time Step" : "Time Step"; in TSMonitorLGTimeStep() local
449 PetscCall(PetscDrawAxisSetLabels(axis, "Timestep as function of time", "Time", ylabel)); in TSMonitorLGTimeStep()