Home
last modified time | relevance | path

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

/petsc/src/dm/impls/patch/tests/output/
H A Dex1_0.out1 Patch DM Patch Mesh
5 Patch 0: (0, 0, 0)--(2, 2, 1)
27 Patch 1: (2, 0, 0)--(4, 2, 1)
52 Patch 2: (4, 0, 0)--(6, 2, 1)
74 Patch 3: (0, 2, 0)--(2, 4, 1)
99 Patch 4: (2, 2, 0)--(4, 4, 1)
128 Patch 5: (4, 2, 0)--(6, 4, 1)
153 Patch 6: (0, 4, 0)--(2, 6, 1)
175 Patch 7: (2, 4, 0)--(4, 6, 1)
200 Patch 8: (4, 4, 0)--(6, 6, 1)
H A Dex1_1.out1 DM Object: Patch Mesh 1 MPI process
3 Patch DM Patch Mesh
H A Dex1_2.out1 Patch DM Patch Mesh
11 Patch 0: (0, 0, 0)--(2, 2, 1)
39 Patch 1: (2, 0, 0)--(4, 2, 1)
67 Patch 2: (0, 2, 0)--(2, 4, 1)
95 Patch 3: (2, 2, 0)--(4, 4, 1)
H A Dex1_3.out1 Patch DM Patch Mesh
11 Patch 0: (0, 0, 0)--(2, 2, 1)
45 Patch 1: (2, 0, 0)--(4, 2, 1)
79 Patch 2: (0, 2, 0)--(2, 4, 1)
113 Patch 3: (2, 2, 0)--(4, 4, 1)
H A Dex1_4.out1 Patch DM Patch Mesh
35 Patch 0: (0, 0, 0)--(2, 2, 1)
93 Patch 1: (2, 0, 0)--(4, 2, 1)
154 Patch 2: (4, 0, 0)--(6, 2, 1)
215 Patch 3: (6, 0, 0)--(8, 2, 1)
273 Patch 4: (0, 2, 0)--(2, 4, 1)
334 Patch 5: (2, 2, 0)--(4, 4, 1)
399 Patch 6: (4, 2, 0)--(6, 4, 1)
464 Patch 7: (6, 2, 0)--(8, 4, 1)
525 Patch 8: (0, 4, 0)--(2, 6, 1)
[all …]
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/
H A D_patch.py90 class Patch(AttributeCache): class
117 self.id = Patch.__global_counter
118 Patch.__global_counter += 1
122 def from_cursor(cls, cursor: CursorLike, value: str, **kwargs) -> Patch:
207 def is_deletion_superset_of(self, other: Patch) -> bool: argument
250 def merge(self, other: Patch) -> Patch: argument
H A D_linter.py21 from ._patch import Patch
80 patch_id = TYPE_CAST(Patch, patch).id if have_patch else -1
145 patches: collections.defaultdict[Path, list[Patch]]
229 patch = Patch(SourceRange.from_locations(start, end), '')
648 patch=Patch(SourceRange.from_locations(start, start), 'static ')
775 def combine(filename: Path, patches: list[Patch]) -> PathDiffPair: argument
791 def merge_patches(patch_list: list[Patch], patch: Patch) -> tuple[bool, Patch]: argument
809 new_list: list[Patch] = []
H A D__init__.py12 from ._patch import Patch
H A D_diag.py432 patch: Optional[Patch]
437 …d, flag: str, message: str, location: SourceLocationLike, patch: Optional[Patch] = None, notes: Op… argument
493 …nd, diag_flag: str, msg: str, src_range: SourceRangeLike, patch: Optional[Patch] = None, **kwargs)… argument
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/docs/
H A D_doc_section.py17 from .._patch import Patch
478 begin_sowing_range, patch=Patch(begin_sowing_range, sowing_chars + 'C')
530 highlight=False, patch=Patch(self.extent, '')
703 patch = Patch(loc, arg_match)
1073 patch = Patch(loc, locase)
1104 patch = Patch(loc, lvl_match)
1225 def __make_deletion_patch(loc: SourceRange, text: str, look_behind: bool) -> Patch:
1265 return Patch(loc.resized(cbegin=cbegin, cend=cend), '')
1320 loc, patch=Patch(loc, f'{chars}{text.replace(chars, "")}{chars}')
H A D_doc_str.py23 from .._patch import Patch
693 …sg: str, src_range: Optional[Union[SourceRange, Cursor]], patch: Optional[Patch] = None, **kwargs)… argument
899 patch = Patch(
934 patch=Patch(restloc, '\n' + (' '*self.indent) + rest)
972 Diagnostic.Kind.ERROR, diag, mess, eloc, highlight=False, patch=Patch(floc, '')
996 Diagnostic.Kind.ERROR, diag, mess, loc, patch=Patch(loc, ' ' * expected_ind)
1033 loc, highlight=False, patch=Patch(loc, '\n')
H A D_doc_section_base.py20 from .._patch import Patch
507 heading_loc, patch=Patch(heading_loc, correct)
535 heading_loc, patch=Patch(heading_loc, matchname)
755 patch = Patch(loc, cursor.name)
915 Diagnostic.Kind.ERROR, align_diag, mess, eloc, patch=Patch(eloc, fixed[diff_index:])
977 Diagnostic.Kind.ERROR, self.diags.prefix, mess, eloc, patch=Patch(eloc, char)
1214 … Diagnostic.Kind.ERROR, format_diag, base_mess.format(nspaces + 1), floc, patch=Patch(floc, fix)
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/checks/
H A D_util.py16 from ..classes._patch import Patch
61 func_cursor.extent.start, patch=Patch.from_cursor(call[0], valid_func_name)
367 patch=Patch.from_cursor(obj_classid, expected)
623 idx_cursor.extent.start, patch=Patch.from_cursor(idx_cursor, str(exp_idx))
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/
H A D_typing.py54 from .classes._patch import Patch
/petsc/doc/install/
H A Ddownload.md84 Patch updates (for example: 3.21.1, 2.21.2, etc. with corresponding Git tags v3.21.1, v3.21.2, etc)
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscpc.pxi289 # --- Patch ---
H A DPC.pyx2411 # --- Patch ---
H A DSNES.pyx2357 # --- Patch ---
/petsc/src/benchmarks/results/
H A Dperformance_cfd_2_10392 Using Petsc Version 2.1.2, Patch 10, Released May 14, 2002
/petsc/doc/
H A Dpetsc.bib3203 title = {Compression and Reduced Representation Techniques for Patch-Based Relaxation},