Home
last modified time | relevance | path

Searched refs:ver (Results 1 – 18 of 18) sorted by relevance

/petsc/src/dm/impls/plex/tests/output/
H A Dex1_1.out11 [0] <dm:plex> TetGenMeshDelaunayIncrFlip(): Creating tetra Tetra with loc(0) and ver(0):
277 subface ver 1, mark 2: (queued)
290 subface ver 1, mark 2:
303 subface ver 2, mark 1:
316 subface ver 2, mark 1:
328 Updating bots[0] Tetra with loc(1) and ver(2):
341 Creating newtops[0] Tetra with loc(0) and ver(0):
357 [0] <dm:plex> TetGenMeshFlip22(): Updating abce Tetra with loc(2) and ver(0):
370 [0] <dm:plex> TetGenMeshFlip22(): Updating bade Tetra with loc(2) and ver(2):
385 [0] <dm:plex> TetGenMeshFlip22(): Updating abce Tetra with loc(1) and ver(4):
[all …]
H A Dex1_0.out11 [0] <dm:plex> TetGenMeshDelaunayIncrFlip(): Creating tetra Tetra with loc(0) and ver(0):
/petsc/config/BuildSystem/config/packages/
H A DOpenBLAS.py62 def versionToStandardForm(self,ver): argument
65 ver = re.match(r"\s*OpenBLAS\s*([0-9\.]+)\s*",ver).group(1)
66 if ver.endswith('.'): ver = ver[0:-1]
67 return ver
H A DThrust.py21 def versionToStandardForm(self,ver): argument
23 return ".".join(map(str,[int(ver)//100000, int(ver)//100%1000, int(ver)%100]))
H A DNVSHMEM.py24 def versionToStandardForm(self,ver): argument
26 return re.sub('[a-zA-Z ]*', '', ver)
H A Ducx.py30 def versionToStandardForm(self,ver): argument
33 …return ".".join(map(str,[int(ver)>>24, (int(ver)>>16) & 0xFF, 0])) # the API version does not have…
H A DMPICH.py30 def versionToStandardForm(self,ver): argument
34 return ".".join(map(str,[int(ver)//10000000, int(ver)//100000%100, int(ver)//1000%100]))
H A DCUDA.py160 ver = os.path.basename(prefix) # 11.4
161 nvhpcCudaVerIncDir = os.path.join(nvhpcDir,'cuda',ver,'include')
162 nvhpcMathVerIncDir = os.path.join(nvhpcDir,'math_libs',ver,'include')
245 ver = os.path.basename(os.path.dirname(directory)) # 11.4
246 nvhpcCudaVerLibDir = os.path.join(nvhpcDir,'cuda',ver,'lib64')
247 nvhpcMathVerLibDir = os.path.join(nvhpcDir,'math_libs',ver,'lib64')
248 nvhpcStubVerLibDir = os.path.join(nvhpcDir,'cuda',ver,'lib64','stubs')
258 self.math_libs_dir = os.path.join(nvhpcDir,'math_libs',ver)
288 def versionToStandardForm(self,ver): argument
290 return ".".join(map(str,[int(ver)//1000, int(ver)//10%10]))
H A DPARTY.py17 def versionToStandardForm(self,ver): argument
19 return re.compile(r'[=A-Za-z]([\.0-9]*),').search(ver).group(1)
H A Dkokkos-kernels.py46 def versionToStandardForm(self,ver): argument
48 return ".".join(map(str,[int(ver)//10000, int(ver)//100%100, int(ver)%100]))
H A Dkokkos.py57 def versionToStandardForm(self,ver): argument
59 return ".".join(map(str,[int(ver)//10000, int(ver)//100%100, int(ver)%100]))
H A DHDF5.py52 def versionToStandardForm(self,ver): argument
54 return ver.replace('-patch','.')
/petsc/lib/petsc/bin/maint/abi-compliance-checker/modules/Internals/Styles/
H A DCmpSystems.css47 table.summary td.ver, table.summary th.ver {
/petsc/src/sys/objects/
H A Dpinit.c831 char *ver, *lf; in PetscInitialize_Common() local
834 PetscCall(PetscStrstr(mpilibraryversion, "MPICH Version:", &ver)); in PetscInitialize_Common()
835 if (ver) { in PetscInitialize_Common()
836 PetscCall(PetscStrchr(ver, '\n', &lf)); in PetscInitialize_Common()
839 PetscCall(PetscStrendswith(ver, MPICH_VERSION, &flg)); in PetscInitialize_Common()
851 char *ver, bs[MPI_MAX_LIBRARY_VERSION_STRING], *bsf; in PetscInitialize_Common() local
858 PetscCall(PetscStrstr(mpilibraryversion, ompistr1[i], &ver)); in PetscInitialize_Common()
859 if (ver) { in PetscInitialize_Common()
861 PetscCall(PetscStrstr(ver, bs, &bsf)); in PetscInitialize_Common()
/petsc/config/BuildSystem/
H A Dretrieval.py25 self.ver = 'unknown'
199 req.headers['User-Agent'] = 'PetscConfigure/'+self.ver
/petsc/config/BuildSystem/config/
H A DsetCompilers.py1030 self.delDefine('HAVE_{lang}_DIALECT_CXX{ver}'.format(lang=LANG,ver=dlct.num))
1056 ver = int(withLangDialect[-2:])
1058 ver = 9e9
1060 if ver in {89, 98} or ver < minver:
1174 …c-toolchain\') you must pass to enable C++{ver}'.format(configureArg, withLangDialect, ver='{ver}')
1177 ver = dialectNum
1179 ver = dialectNum.casefold().replace('c++', '').replace('gnu++', '')
1180 mess = base_mess.format(lang=language.replace('x','+'),compiler=compiler,ver=ver)
1196 …++{ver}, set new cxxDialectRange: {drange}'.format(flag=flag,lang=language,ver=dlct.num,drange=sel…
1203 self.addDefine('HAVE_{lang}_DIALECT_CXX{ver}'.format(lang=LANG,ver=dlct.num),1)
H A Dpackage.py923 self.retriever.ver = self.petscdir.version
/petsc/lib/petsc/bin/maint/
H A Dgcov.py86 def from_string(cls, ver): argument
87 return cls.from_iterable(ver.split('.'))