Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/petsc/src/ts/utils/dmplexlandau/tutorials/output/
H A Dex1_re.out7 [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 Dex49.c7 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 Dex51.c6 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 Dreg.c16 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 Dmatreg.c29 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 Dmstk.py42 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 DTrilinos.py53 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 DUmpire.py44 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 DSTRUMPACK.py57 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 DMOAB.py58 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 DPaStiX.py38 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 DOpenMP.py48 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 DRAJA.py53 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 DMFEM.py49 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 Dh2opus.py42 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 Dkokkos.py84 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 Dfretrieve.c336 …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 Dsmatlab.c32 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 Dstr.c482 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 Dheaders.py83 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 Dbox.c111 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 Dgoogle.c44 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 Dglobus.c106 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 Dptype.c189 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 Diosbuilder.py210 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 …]

12345678910>>...16