| /petsc/src/sys/tutorials/output/ |
| H A D | ex5f90_1.out | 2 nxc = 56 ; nxc_variable help message 3 rarray = 4. 5. 88. ; rarray help message 4 x = 103.2 ; x variable help message 5 t = TRUE; t boolean help message 6 tarray = FALSE FALSE FALSE; tarray help message 7 c = hello; string help message 8 y = -11. ; y variable help message 9 pos_x1 = 1. ; tuple value 1 help message 10 pos_x2 = 2. ; tuple value 2 help message 11 enum = b456; (list) tuple value 2 help message [all …]
|
| /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/ |
| H A D | _diag.py | 430 message: str 437 …def __init__(self, kind: DiagnosticKind, flag: str, message: str, location: SourceLocationLike, pa… 459 self.message = str(message) 468 …def make_message_from_formattable(message: str, crange: Optional[Formattable] = None, num_context:… 489 return message 574 message = self.message 576 if self.FLAG_SUBST in message: 577 message = message.replace(self.FLAG_SUBST, clflag.lstrip()) 580 pos = message.find(sub) 582 message += clflag [all …]
|
| /petsc/src/sys/tutorials/ |
| H A D | ex3f90.F90 | 33 PetscReal, allocatable :: message(:, :) 60 allocate (message(msgLen, msglen)) 63 message(i, j) = 10.0_PETSC_REAL_KIND*j + i*1.0_PETSC_REAL_KIND/(rank + 1_PETSC_MPIINT_KIND) 90 …PetscCallMPIA(MPI_Isend(message, msgLen, MPIU_REAL, mod(rank + 1_PETSC_MPIINT_KIND, size), tagMsg … 91 …PetscCallMPIA(MPI_Recv(message, msgLen, MPIU_REAL, mod(rank - 1_PETSC_MPIINT_KIND + size, size), t… 200 …PetscCallMPIA(MPI_Isend(message, msgLen, MPIU_REAL, mod(rank + 1_PETSC_MPIINT_KIND, size), tagMsg … 201 …PetscCallMPIA(MPI_Recv(message, msgLen, MPIU_REAL, mod(rank - 1_PETSC_MPIINT_KIND + size, size), t… 228 deallocate (message)
|
| /petsc/src/binding/petsc4py/test/ |
| H A D | runtests.py | 197 def writeln(self, message=''): argument 202 writeln_orig(self, message) 226 def writeln(message='', endl='\n'): argument 227 if message is None: 231 message = f'{prefix} {message}' 232 Sys.syncPrint(message, endl=endl, flush=True)
|
| /petsc/src/sys/info/ |
| H A D | verboseinfo.c | 587 PetscErrorCode PetscInfo_Private(const char func[], PetscObject obj, const char message[], ...) in PetscInfo_Private() argument 600 PetscAssertPointer(message, 3); in PetscInfo_Private() 635 va_start(Argp, message); in PetscInfo_Private() 636 PetscCall(PetscVSNPrintf(string + len, 8 * 1024 - len, message, &fullLength, Argp)); in PetscInfo_Private() 641 va_start(Argp, message); in PetscInfo_Private() 642 PetscCall((*PetscVFPrintf)(petsc_history, message, Argp)); in PetscInfo_Private()
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | Sys.pyx | 190 message = ''.join(format) % args 192 message = '' 194 message = str2bytes(message, &m) 234 message = ''.join(format) % args 236 message = str2bytes(message, &m)
|
| /petsc/src/sys/error/ftn-custom/ |
| H A D | zerrf.c | 82 …cerror_(MPI_Fint *comm, PetscErrorCode *number, PetscErrorType *p, char *message, PETSC_FORTRAN_CH… in petscerror_() argument 86 FIXCHAR(message, len, t1); in petscerror_() 88 FREECHAR(message, t1); in petscerror_()
|
| /petsc/src/dm/tutorials/output/ |
| H A D | swarm_ex1_4.out | 8 message lengths status: finalized
|
| H A D | swarm_ex1_2.out | 8 message lengths status: finalized
|
| H A D | swarm_ex1_8.out | 11 message lengths status: finalized
|
| H A D | swarm_ex1_3.out | 27 message lengths status: finalized
|
| H A D | swarm_ex1_6.out | 11 message lengths status: finalized
|
| /petsc/src/sys/fileio/ |
| H A D | mprint.c | 581 char *message; in PetscSynchronizedFlush() local 600 PetscCall(PetscMalloc1(size, &message)); in PetscSynchronizedFlush() 601 PetscCallMPI(MPI_Recv(message, size, MPI_CHAR, i, tag, comm, &status)); in PetscSynchronizedFlush() 602 PetscCall(PetscFPrintf(comm, fd, "%s", message)); in PetscSynchronizedFlush() 603 PetscCall(PetscFree(message)); in PetscSynchronizedFlush()
|
| /petsc/doc/community/ |
| H A D | mailing.md | 51 message. Instead, include them as attachments. 52 - Please do NOT paste **entire** programs DIRECTLY into the email message. Instead, 59 - Copy of the **complete** error message using cut-and-paste, if feasible, otherwise include the fu… 60 message as a **text** attachment, not a screenshot.
|
| /petsc/src/sys/tests/output/ |
| H A D | ex73_0.out | 9 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| H A D | ex70_1.out | 10 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| H A D | ex73_0_alt.out | 10 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| /petsc/doc/developers/contributing/ |
| H A D | developingmr.md | 79 - Commit code with good commit message, for example 92 …If any interfaces have changed, the commit should fix occurrences in PETSc itself and the message … 94 …it message tags you should use; this makes it easy to search for specific types of contributions. … 98 …ting an initial version of the patch, acknowledge them using tags at the end of the commit message.
|
| /petsc/src/binding/petsc4py/src/petsc4py/lib/ |
| H A D | __init__.py | 97 warnings.filterwarnings('ignore', message='numpy.dtype size changed') 98 warnings.filterwarnings('ignore', message='numpy.ndarray size changed')
|
| /petsc/src/ts/tests/output/ |
| H A D | ex26_arkimex_explicit_stage.out | 12 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| /petsc/src/snes/tutorials/output/ |
| H A D | ex19_failure_size.out | 11 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| /petsc/src/binding/petsc4py/docs/source/ |
| H A D | index.rst | 21 all message-passing communication.
|
| /petsc/src/sys/objects/device/tests/output/ |
| H A D | ex12_device_enable-eager_cuda_env_set_empty_device_enable_cuda-eager.out | 18 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| H A D | ex12_device_enable-none_cuda_env_set_empty_device_enable_cuda-eager.out | 18 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|
| H A D | ex12_device_enable-lazy_cuda_env_set_empty_device_enable_cuda-eager.out | 18 [0]PETSC ERROR: ----------------End of Error Message -------send entire error message to petsc-main…
|