| /petsc/src/sys/classes/draw/utils/ |
| H A D | axis.c | 32 int i, power; in PetscADefTicks() local 36 PetscCall(PetscAGetBase(low, high, num, &base, &power)); in PetscADefTicks() 109 PetscErrorCode PetscAGetBase(PetscReal vmin, PetscReal vmax, int num, PetscReal *Base, int *power) in PetscAGetBase() argument 127 *power = (int)ftemp; in PetscAGetBase() 128 PetscCall(PetscExp10((double)-*power, &e10)); in PetscAGetBase() 134 PetscCall(PetscExp10((double)*power, &e10)); in PetscAGetBase() 136 if (i == 1) *power = *power + 1; in PetscAGetBase()
|
| /petsc/include/ |
| H A D | petscmath.h | 1051 static inline PetscInt PetscPowInt(PetscInt base, PetscInt power) in PetscPowInt() argument 1054 while (power) { in PetscPowInt() 1055 if (power & 1) result *= base; in PetscPowInt() 1056 power >>= 1; in PetscPowInt() 1057 if (power) base *= base; in PetscPowInt() 1062 static inline PetscInt64 PetscPowInt64(PetscInt base, PetscInt power) in PetscPowInt64() argument 1065 while (power) { in PetscPowInt64() 1066 if (power & 1) result *= base; in PetscPowInt64() 1067 power >>= 1; in PetscPowInt64() 1068 if (power) base *= base; in PetscPowInt64() [all …]
|
| /petsc/src/snes/tutorials/network/power/ |
| H A D | makefile | 5 CLEANFILES = power power2 ${OBJECTS_PF} 10 power: ${OBJECTS_PF} target
|
| /petsc/src/snes/tutorials/network/ |
| H A D | makefile | 4 OBJECTS_EX1 = power/PFReadData.o power/pffunctions.o water/waterreaddata.o water/waterfunctions.o
|
| /petsc/lib/petsc/bin/maint/ |
| H A D | petscdt_create_quadrature_headers.py | 43 power = int(parts[0]) 75 rules[power] = rule 94 power = int(parts.group(1)) 140 rules[power] = rule
|
| H A D | toclapack.sh | 2117 /* Computing 5th power */ 2119 /* Computing 2nd power */ 2434 /* approximately to a power of 2. It will fail on machines where this */ 4108 /* Computing 5th power */ 4110 /* Computing 2nd power */ 4425 /* approximately to a power of 2. It will fail on machines where this */
|
| /petsc/share/petsc/suppressions/ |
| H A D | ubsan | 65 alignment:src/snes/tutorials/network/power/power2.c 66 alignment:src/snes/tutorials/network/power/pffunctions.c
|
| /petsc/doc/manualpages/MANSECHeaders/ |
| H A D | DMNetwork | 3 …s designed to handle very large scale graphs, such as those that arise in power system or wireless…
|
| /petsc/include/petsc/private/ |
| H A D | deviceimpl.h | 354 … PetscErrorCode PetscDeviceContextGetPower_Internal(PetscDeviceContext dctx, PetscLogDouble *power) in PetscDeviceContextGetPower_Internal() argument 358 PetscAssertPointer(power, 2); in PetscDeviceContextGetPower_Internal() 359 PetscUseTypeMethod(dctx, getpower, power); in PetscDeviceContextGetPower_Internal()
|
| /petsc/doc/overview/ |
| H A D | nutshell.md | 47 - Networks/graphs, for example the power grid, river networks, the nervous system, {any}`ch_network…
|
| /petsc/src/sys/objects/device/impls/cupm/ |
| H A D | cupmcontext.hpp | 433 inline PetscErrorCode DeviceContext<T>::getPower(PetscDeviceContext dctx, PetscLogDouble *power) no… in getPower() argument 444 *power = static_cast<util::remove_pointer_t<decltype(power)>>(values[0].value.uiVal); in getPower()
|
| /petsc/doc/manual/ |
| H A D | dmnetwork.md | 7 communication networks, power grid, computer networks, transportation 25 graph problems, or generator/transmission line data for power grids.
|
| H A D | about_this_manual.md | 23 enable efficient software use. However, the power of the PETSc design
|
| H A D | dmbase.md | 18 as the power grid or river networks (`DMNETWORK` -- {any}`ch_network`), and particle-in-cell simula…
|
| H A D | dmplex.md | 280 flag to `useClosure = PETSC_FALSE`. However, the power of this method
|
| H A D | getting_started.md | 649 if one wishes to use the GPU computational power on it. This memory copy is slow compared to the GP…
|
| H A D | ts.md | 1239 The problem is to study dynamic security of power system when there are
|
| H A D | snes.md | 1279 - ``power``
|
| H A D | ksp.md | 63 Much of the power of `KSP` can be accessed through the single routine
|
| /petsc/src/mat/impls/aij/seq/bas/ |
| H A D | spbas.c | 775 PetscErrorCode spbas_power(spbas_matrix in_matrix, PetscInt power, spbas_matrix *result) in spbas_power() argument 790 PetscCheck(power > 0, PETSC_COMM_SELF, PETSC_ERR_SUP_SYS, "Power must be 1 or up"); in spbas_power() 807 for (i = 1; i < power; i++) marker *= 2; in spbas_power()
|
| /petsc/src/ts/event/ |
| H A D | tsevent.c | 520 PetscReal new_dt, scal = 1.0, scalB = 1.0, threshold = 0.0, power; in RefineAndersonBjorck() local 548 power = PetscMax(0.0, (reps - 2.0) / (REPS_CAP - 2.0)); in RefineAndersonBjorck() 549 …scal = PetscPowReal(scalB / *gamma, power) * (*gamma); // mix the Anderson-Bjorck scaling and Bis… in RefineAndersonBjorck()
|
| /petsc/src/sys/logging/ |
| H A D | plog.c | 2435 PetscLogDouble power; in PetscLogGpuTimeEnd() local 2436 PetscCall(PetscDeviceContextGetPower_Internal(dctx, &power)); in PetscLogGpuTimeEnd() 2437 petsc_genergy += (power * elapsed / 1000000.0); // convert to Joules in PetscLogGpuTimeEnd()
|
| /petsc/systems/Apple/iOS/PETSc/PETSc.xcodeproj/ |
| H A D | project.pbxproj | 400 …D89D1E09207AA1AB00FACC19 /* power.c in Sources */ = {isa = PBXBuildFile; fileRef = D89D1B21207AA1A… 1152 …1B21207AA1AA00FACC19 /* power.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 1923 D89D1B21207AA1AA00FACC19 /* power.c */, 2700 D89D1E09207AA1AB00FACC19 /* power.c in Sources */,
|
| /petsc/doc/community/meetings/2023/ |
| H A D | index.md | 176 throughput while maintaining a reasonable power consumption. Consequently,
|
| /petsc/doc/ |
| H A D | petsc.bib | 1144 parallel solution of very large power flow problems}, 7483 title = {Towards faster solution of large power flow problems}, 7520 transients simulator for power systems}, 7528 title = {Using {PETSc} to develop scalable applications for next-generation power grid}, 7539 title = {Development of a parallel three-phase transient stability simulator for power 7570 title = {A distributed implementation of multi-area power system state estimation on a 11079 title = {Parallel implementation of {AC} optimal power flow and time-constrained optimal 11080 power flow using high-performance computing}, 11836 title = {Multigrid on {GPU}: Tackling power grid analysis on parallel SIMT platforms}, 23216 title = {{MATPOWER}: Steady-state operations, planning and analysis tools for power [all …]
|