| /petsc/src/ts/utils/dmplexlandau/tutorials/output/ |
| H A D | ex1_re.out | 7 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 8 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 9 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 10 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 11 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 12 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 13 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 14 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 15 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells 16 [0] <vec:seq> adaptToleranceFEM(): 0) (debug) found Z1 cells [all …]
|
| /petsc/src/sys/tests/ |
| H A D | ex49.c | 7 PetscBool found; in main() local 21 PetscCall(PetscDataTypeFromString("Scalar", &dtype, &found)); in main() 22 PetscCheck(found, PETSC_COMM_WORLD, PETSC_ERR_ARG_WRONG, "Did not find scalar datatype"); in main() 25 PetscCall(PetscDataTypeFromString("INT", &dtype, &found)); in main() 26 PetscCheck(found, PETSC_COMM_WORLD, PETSC_ERR_ARG_WRONG, "Did not find int datatype"); in main() 29 PetscCall(PetscDataTypeFromString("real", &dtype, &found)); in main() 30 PetscCheck(found, PETSC_COMM_WORLD, PETSC_ERR_ARG_WRONG, "Did not find real datatype"); in main() 33 PetscCall(PetscDataTypeFromString("abogusdatatype", &dtype, &found)); in main() 34 PetscCheck(!found, PETSC_COMM_WORLD, PETSC_ERR_ARG_WRONG, "Found a bogus datatype"); in main()
|
| H A D | ex51.c | 6 PetscBool found; in main() local 21 PetscCall(PetscFileRetrieve(PETSC_COMM_WORLD, url, localname, PETSC_MAX_PATH_LEN, &found)); in main() 22 PetscCheck(found, PETSC_COMM_WORLD, PETSC_ERR_PLIB, "Unable to download url %s", url); in main()
|
| /petsc/src/sys/dll/ |
| H A D | reg.c | 16 static PetscErrorCode PetscLoadDynamicLibrary(const char *name, PetscBool *found) in PetscLoadDynamicLibrary() argument 26 PetscCall(PetscDLLibraryRetrieve(PETSC_COMM_WORLD, libs, dlib, 1024, found)); in PetscLoadDynamicLibrary() 27 if (*found) { in PetscLoadDynamicLibrary() 35 PetscCall(PetscDLLibraryRetrieve(PETSC_COMM_WORLD, libs, dlib, 1024, found)); in PetscLoadDynamicLibrary() 36 if (*found) PetscCall(PetscDLLibraryAppend(PETSC_COMM_WORLD, &PetscDLLibrariesLoaded, dlib)); in PetscLoadDynamicLibrary() 90 PetscBool found; in PetscInitialize_DynamicLibraries() local 92 PetscCall(PetscLoadDynamicLibrary("", &found)); in PetscInitialize_DynamicLibraries() 93 …PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_FILE_OPEN, "Unable to locate PETSc dynamic library. Y… in PetscInitialize_DynamicLibraries() 95 PetscCall(PetscLoadDynamicLibrary("sys", &found)); in PetscInitialize_DynamicLibraries() 96 …PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_FILE_OPEN, "Unable to locate PETSc Sys dynamic librar… in PetscInitialize_DynamicLibraries() [all …]
|
| /petsc/src/mat/interface/ |
| H A D | matreg.c | 29 PetscBool found = PETSC_FALSE; in MatGetRootType_Private() local 37 PetscCall(PetscStrcmp(inType, names->mname, &found)); in MatGetRootType_Private() 38 if (!found) PetscCall(PetscStrcmp(inType, names->sname, &found)); in MatGetRootType_Private() 39 if (found) { in MatGetRootType_Private() 40 found = PETSC_TRUE; in MatGetRootType_Private() 46 if (!found) *rootType = inType; in MatGetRootType_Private() 66 PetscBool found = PETSC_FALSE; in MatGetMPIMatType_Private() local 74 PetscCall(PetscStrcmp(inType, names->sname, &found)); in MatGetMPIMatType_Private() 75 if (!found) PetscCall(PetscStrcmp(inType, names->mname, &found)); in MatGetMPIMatType_Private() 76 if (!found) PetscCall(PetscStrcmp(inType, names->rname, &found)); in MatGetMPIMatType_Private() [all …]
|
| /petsc/config/BuildSystem/config/packages/ |
| H A D | mstk.py | 42 if not self.metis.found and not self.zoltan.found and not self.trilinos: 44 if self.metis.found: 47 if self.zoltan.found or self.trilinos.found: 49 if self.zoltan.found: 53 if self.parmetis.found: 56 if self.ptscotch.found: 60 if self.exodusii.found or self.trilinos.found: 62 if self.exodusii.found:
|
| H A D | Trilinos.py | 53 if self.zoltan.found: 55 if self.ml.found: 57 if self.chaco.found: 59 if self.exodusii.found: 117 if not self.netcdf.found: 120 if not self.hdf5.found: 149 if self.boost.found: 192 if self.hwloc.found: 197 if self.superlu.found and self.superlu_dist.found: 200 if self.superlu.found: [all …]
|
| H A D | Umpire.py | 44 args.append('-DENABLE_CUDA={}'.format('ON' if self.cuda.found else 'OFF')) 45 args.append('-DENABLE_HIP={}'.format('ON' if self.hip.found else 'OFF')) 46 args.append('-DENABLE_SYCL={}'.format('ON' if self.sycl.found else 'OFF')) 47 args.append('-DENABLE_OPENMP={}'.format('ON' if self.openmp.found else 'OFF')) 48 if hasattr(self, 'mpi') and self.mpi.found and not self.mpi.usingMPIUni: 54 if self.cuda.found: 59 if self.hip.found:
|
| H A D | STRUMPACK.py | 57 if self.parmetis.found: 64 if self.ptscotch.found: 75 if self.openmp.found: 80 if self.zfp.found: 85 if self.butterflypack.found: 91 if self.cuda.found: 94 elif self.hip.found: 99 if self.cuda.found or self.hip.found: 100 if self.slate.found:
|
| H A D | MOAB.py | 58 if self.hdf5.found: 60 if self.szlib.found: 66 if self.netcdf.found: 70 if self.eigen.found: 72 if self.metis.found: 78 if self.parmetis.found: 80 if self.ptscotch.found: 82 if self.zoltan.found:
|
| H A D | PaStiX.py | 38 if self.blaslapack.netliblapack.found and not self.blaslapack.netliblapack.cinterface: 47 if not self.ptscotch.found and not self.metis.found: 63 if self.metis.found: 68 if self.ptscotch.found: 73 if self.mpi.found: 81 if dep.found:
|
| H A D | OpenMP.py | 48 self.found = 0 52 self.found = 1 75 if not self.found: 86 if self.mpi.found and self.mpi.support_mpi3_shm and self.pthread.found and self.hwloc.found:
|
| H A D | RAJA.py | 53 if self.openmp.found: 58 if self.mpi.found and not self.mpi.usingMPIUni: 73 if self.cuda.found: 85 elif self.hip.found: 93 if self.cuda.found: 95 elif self.hip.found:
|
| H A D | MFEM.py | 49 if lib_data.found: 54 if self.cuda.found: 92 if self.cuda.found: 94 if self.openmp.found: 102 if not self.hip.found: #MFEM uses hipcc as compiler for everything 113 if self.cuda.found: 126 if self.cuda.found: 145 if self.cuda.found: 152 if self.slepc.found: 169 if self.cuda.found: [all …]
|
| H A D | h2opus.py | 42 with_gpu = self.cuda.found and self.magma.found and self.kblas.found 43 if not with_gpu and not (self.thrust.found or self.cuda.found or self.hip.found): 46 if self.openmp.found: 130 if self.thrust.found: 132 elif self.cuda.found: 134 elif self.hip.found:
|
| H A D | kokkos.py | 84 if self.mpi.found and not self.mpi.usingMPIUni: 87 if self.hwloc.found: 96 if self.openmp.found: 102 if self.cuda.found: 166 elif self.hip.found: 187 elif self.sycl.found: 215 if self.cuda.found: 223 elif self.hip.found: 226 elif self.sycl.found: 236 if self.cuda.found:
|
| /petsc/src/sys/fileio/ |
| H A D | fretrieve.c | 336 …PetscFileRetrieve(MPI_Comm comm, const char url[], char localname[], size_t llen, PetscBool *found) in PetscFileRetrieve() argument 347 *found = PETSC_FALSE; in PetscFileRetrieve() 363 PetscCall(PetscTestFile(url, 'r', found)); in PetscFileRetrieve() 364 if (*found) { in PetscFileRetrieve() 377 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve() 378 if (*found) goto done; in PetscFileRetrieve() 388 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve() 389 if (*found) goto done; in PetscFileRetrieve() 404 PetscCall(PetscTestFile(localname, 'r', found)); in PetscFileRetrieve() 405 if (*found) { in PetscFileRetrieve() [all …]
|
| H A D | smatlab.c | 32 char buf[1024], *found; in PetscStartMatlab() local 41 if (rank == 0) found = fgets(buf, 1024, fd); in PetscStartMatlab() 42 PetscCallMPI(MPI_Bcast(&found, 1, MPI_CHAR, 0, comm)); in PetscStartMatlab() 44 if (found) PetscFunctionReturn(PETSC_SUCCESS); in PetscStartMatlab()
|
| /petsc/src/sys/utils/ |
| H A D | str.c | 482 PetscErrorCode PetscStrInList(const char str[], const char list[], char sep, PetscBool *found) in PetscStrInList() argument 488 PetscAssertPointer(found, 4); in PetscStrInList() 489 *found = PETSC_FALSE; in PetscStrInList() 493 PetscCall(PetscStrcmp(str, item, found)); in PetscStrInList() 494 if (*found) break; in PetscStrInList() 666 PetscBool found; in PetscStrcmpAny() local 667 PetscCall(PetscStrcmp(src, cmp, &found)); in PetscStrcmpAny() 668 if (found) { in PetscStrcmpAny() 696 …cEListFind(PetscInt n, const char *const *list, const char *str, PetscInt *value, PetscBool *found) in PetscEListFind() argument 699 if (found) { in PetscEListFind() [all …]
|
| /petsc/config/BuildSystem/config/ |
| H A D | headers.py | 83 found = 0 85 found = 1 86 if adddefine: self.addDefine(self.getDefineName(header), found) 87 return found 99 found = False 110 found = self.checkPreprocess(body, timeout = timeout) 113 if found and macro is not None: 115 if not found and macro is None: return 0 116 if macro is not None and not found:
|
| /petsc/src/sys/webclient/ |
| H A D | box.c | 111 PetscBool flg, found; in PetscBoxAuthorize() local 141 PetscCall(PetscPullJSONValue(buff, "access_token", access_token, tokensize, &found)); in PetscBoxAuthorize() 142 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Box did not return access token"); in PetscBoxAuthorize() 143 PetscCall(PetscPullJSONValue(buff, "refresh_token", refresh_token, tokensize, &found)); in PetscBoxAuthorize() 144 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Box did not return refresh token"); in PetscBoxAuthorize() 181 PetscBool found; in PetscBoxRefresh() local 215 PetscCall(PetscPullJSONValue(buff, "access_token", access_token, tokensize, &found)); in PetscBoxRefresh() 216 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Box did not return access token"); in PetscBoxRefresh() 217 PetscCall(PetscPullJSONValue(buff, "refresh_token", new_refresh_token, tokensize, &found)); in PetscBoxRefresh() 218 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Box did not return refresh token"); in PetscBoxRefresh()
|
| H A D | google.c | 44 PetscBool found; in PetscGoogleDriveRefresh() local 74 PetscCall(PetscPullJSONValue(buff, "access_token", access_token, tokensize, &found)); in PetscGoogleDriveRefresh() 75 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Google drive did not return access_token"); in PetscGoogleDriveRefresh() 217 PetscBool found; in PetscGoogleDriveAuthorize() local 250 PetscCall(PetscPullJSONValue(buff, "access_token", access_token, tokensize, &found)); in PetscGoogleDriveAuthorize() 251 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Google drive did not return access_token"); in PetscGoogleDriveAuthorize() 252 PetscCall(PetscPullJSONValue(buff, "refresh_token", refresh_token, tokensize, &found)); in PetscGoogleDriveAuthorize() 253 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Google drive did not return refresh_token"); in PetscGoogleDriveAuthorize()
|
| H A D | globus.c | 106 PetscBool found; in PetscGlobusAuthorize() local 133 PetscCall(PetscPullJSONValue(buff, "access_token", access_token, tokensize, &found)); in PetscGlobusAuthorize() 134 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Globus did not return access token"); in PetscGlobusAuthorize() 217 PetscBool flg, found; in PetscGlobusUpload() local 243 PetscCall(PetscPullJSONValue(buff, "value", submission_id, sizeof(submission_id), &found)); in PetscGlobusUpload() 244 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Globus did not return submission id"); in PetscGlobusUpload() 280 PetscCall(PetscPullJSONValue(buff, "code", submission_id, sizeof(submission_id), &found)); in PetscGlobusUpload() 281 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Globus did not return code on transfer"); in PetscGlobusUpload() 282 PetscCall(PetscStrcmp(submission_id, "Accepted", &found)); in PetscGlobusUpload() 283 PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_LIB, "Globus did not accept transfer"); in PetscGlobusUpload()
|
| /petsc/src/sys/objects/ |
| H A D | ptype.c | 189 PetscErrorCode PetscDataTypeFromString(const char name[], PetscDataType *ptype, PetscBool *found) in PetscDataTypeFromString() argument 192 PetscCall(PetscEnumFind(PetscDataTypes, name, (PetscEnum *)ptype, found)); in PetscDataTypeFromString() 193 if (!*found) { in PetscDataTypeFromString() 198 PetscCall(PetscStrcmp(formatted, "scalar", found)); in PetscDataTypeFromString() 199 if (*found) { in PetscDataTypeFromString() 202 PetscCall(PetscStrcmp(formatted, "real", found)); in PetscDataTypeFromString() 203 if (*found) *ptype = PETSC_REAL; in PetscDataTypeFromString()
|
| /petsc/systems/Apple/iOS/bin/ |
| H A D | iosbuilder.py | 210 found = 0 214 if pname == rvalue: found = 1 218 if pname == rvalue: found = 1 219 if not found: 223 if pname == rvalue: found = 1 227 if pname == rvalue: found = 1 228 if not found: 232 found = 0 236 if pname == rvalue: found = 1 237 if not found: [all …]
|