Home
last modified time | relevance | path

Searched refs:zip (Results 1 – 20 of 20) sorted by relevance

/petsc/src/ts/tests/
H A Dex3.c341 PetscScalar dd, dl, zip, zipq, zz, b_z, bb_z, bij; in femBg() local
371 zip = z[ip]; in femBg()
373 dl = zipq - zip; in femBg()
374 zquad[il][0] = zip; in femBg()
375 zquad[il][1] = (0.5) * (zip + zipq); in femBg()
421 PetscScalar dd, dl, zip, zipq, zz, bb, bbb, aij; in femA() local
452 zip = z[ip]; in femA()
454 dl = zipq - zip; in femA()
455 rquad[il][0] = zip; in femA()
456 rquad[il][1] = (0.5) * (zip + zipq); in femA()
/petsc/lib/petsc/bin/maint/
H A Dpetscdt_create_quadrature_headers.py54 for (i,(count, multiplicity)) in enumerate(zip(counts, (1,3,6))):
66 diffs = [b - a for (a,b) in zip(nodes[:-1],nodes[1:])]
107 for (i,(count, multiplicity)) in enumerate(zip(counts, (1,4,6,12,24))):
117 diffs = [b - a for (a,b) in zip(nodes[:-1],nodes[1:])]
127 diffs = [b - a for (a,b) in zip(nodes[:-1],nodes[1:])]
H A Dtoclapack.sh595 Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
597 http://www.netlib.org/f2c/libf2c.zip
2585 Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
2587 http://www.netlib.org/f2c/libf2c.zip
4792 Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
4794 http://www.netlib.org/f2c/libf2c.zip
/petsc/src/benchmarks/
H A DbenchmarkExample.py204 for event, color in zip(eventNames, ['b', 'g', 'r', 'y']):
205 for arch, style in zip(arches, ['-', ':']):
233 for event, color in zip(eventNames, ['b', 'g', 'r', 'y']):
234 for arch, style in zip(arches, ['-', ':']):
261 for arch, style in zip(arches, ['-', ':']):
262 for event, color in zip(eventNames, ['b', 'g', 'r', 'y']):
305 for event, color in zip(eventNames, ['b', 'g', 'r', 'y']):
306 for arch, style in zip(arches, ['-', ':']):
326 for event, color in zip(eventNames, ['b', 'g', 'r', 'y']):
327 for arch, style in zip(arches, ['-', ':']):
[all …]
H A DbenchmarkAssembly.py121 for n, p in zip(grid, procs):
/petsc/src/binding/petsc4py/test/
H A Dtest_optdb.py131 for v1, v2 in zip(arrayv, av):
138 for v1, v2 in zip(arrayv, av):
145 for v1, v2 in zip(arrayv, defarrayv):
H A Dtest_dmda.py121 for b, p in zip(btype, psize):
141 for b, p in zip(btype, psize):
189 ranges = list(zip(*ranges))
238 for n1, n2 in zip(self.da.getSizes(), cda.getSizes()):
252 for n1, n2 in zip(self.da.getSizes(), rda.getSizes()):
H A Dtest_nsp.py8 for v1, v2 in zip(seq1, seq2):
H A Dtest_dmstag.py426 for co, do in zip(
429 for i, j in zip(co, do):
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A Dpkg_consistency_checks.py50 for toml_req, req_req in zip(toml_reqs, req_lines):
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/checks/
H A D_code.py46 for obj, idx in zip(func_args[::2], func_args[1::2]):
/petsc/src/binding/petsc4py/demo/regressor/
H A Dtest_regressor_synthetic.py96 for noise,plt_ind in zip([0,0.1,1,10,100,1000],plt_ind_list):
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/util/
H A D_clang.py196 for i, (arg, expected) in enumerate(zip(args, self._function.argtypes)):
/petsc/lib/petsc/bin/maint/abi-compliance-checker/
H A DINSTALL69 5. Info-ZIP 3.0 (zip, unzip)
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/
H A D_patch.py165 … cache_entry, lambda: all(p.extent.overlaps(c.extent) for p, c in zip(deltas[:-1], deltas[1:]))
H A D_pool.py387 for worker, alive in zip(self.workers, live_list):
/petsc/config/
H A Dinstall.py250 for srcname, dstname in zip(srclinks, dstlinks):
/petsc/src/vec/vec/impls/seq/cupm/
H A Dvecseqcupm_impl.hpp2105 const auto zip = thrust::make_zip_iterator( in MinMax_() local
2115 stream, zip, zip + n, detail::real_part{}, in MinMax_()
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/docs/
H A D_doc_section.py808 [name for seen, name in zip(visitor.arg_seen, visitor.arg_names) if not seen],
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A DMat.pyx2520 """Return the values in the ``zip(rows, cols)`` positions.