<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in shell.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>4e8208cbcbc709572b8abe32f33c78b69c819375 - Merge branch &apos;barry/2026-01-13/ftn-generation-for-context-functions&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#4e8208cbcbc709572b8abe32f33c78b69c819375</link>
        <description>Merge branch &apos;barry/2026-01-13/ftn-generation-for-context-functions&apos; into &apos;main&apos;Fortran generation of interface definitions for functions that take and return context variables  (void *ctx and PetCtx ctx)See merge request petsc/petsc!8956

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Sat, 31 Jan 2026 18:41:18 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>2a8381b23c702518c6b1ccbeafee50b9375df0e4 - Add automatic generated fortran support for setting and returning contexts</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#2a8381b23c702518c6b1ccbeafee50b9375df0e4</link>
        <description>Add automatic generated fortran support for setting and returning contextsMajor cleanup of the code for setting and returning application (previously called user) contexts  - PetscCtx ctx is now the standard for passing in contexts  - PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFnBoth of these are typedef to void*Also removed most use of user and userctx for context arguments now consistently named ctxImproved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Tue, 13 Jan 2026 04:45:38 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>e8c0849ab8fe171bed529bea27238c9b402db591 - Merge branch &apos;barry/2025-10-18/optimize-aij-ops&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#e8c0849ab8fe171bed529bea27238c9b402db591</link>
        <description>Merge branch &apos;barry/2025-10-18/optimize-aij-ops&apos; into &apos;main&apos;Refactor handling of diagonal marking in *AIJ and SELL matricesSee merge request petsc/petsc!8797

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Thu, 20 Nov 2025 18:32:32 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>421480d92be24cdb9933c60510b8e175c0a8d034 - - Replace MatMissingDiagonal() and MatMarkDiagonals_SeqXXX() with MatGetDiagonalMarkers_SeqXXX()</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#421480d92be24cdb9933c60510b8e175c0a8d034</link>
        <description>- Replace MatMissingDiagonal() and MatMarkDiagonals_SeqXXX() with MatGetDiagonalMarkers_SeqXXX()    - Mat_SeqXXX-&gt;diag is not automatically created during MatAssemblyEnd() saving memory and time    - Accessing Mat_SeqXXX-&gt;diag now requires the use of MatGetDiagonalMarkers_SeqXXX() except when the current values are known to be correct; for example during numerical factorizations and solves    - Mat_SeqXXX-&gt;diag is now never shared among matrices; hence the free_diag flag is gone. That was always a risky proposition since any of the owning matrices could chang the values thus making them incorrect for other owners.

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Sun, 19 Oct 2025 04:43:08 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b31b2f82859ff8548562364efb89146f661bbcd9 - Merge branch &apos;barry/2025-10-24/fix-dmshellsetdestroyctx&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#b31b2f82859ff8548562364efb89146f661bbcd9</link>
        <description>Merge branch &apos;barry/2025-10-24/fix-dmshellsetdestroyctx&apos; into &apos;main&apos;Finish converting the function prototypes of destroy for contexts to use PetscCtxDestroyFnSee merge request petsc/petsc!8810

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Mon, 10 Nov 2025 16:51:13 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>cc1eb50d5a4d6061e906552df09a79d2d9d16af2 - Change names of Mat_XXX product contexts to MatProductCtx_XXX for code maintainability</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#cc1eb50d5a4d6061e906552df09a79d2d9d16af2</link>
        <description>Change names of Mat_XXX product contexts to MatProductCtx_XXX for code maintainabilityUpdate destroy callback of all MatProductCtx and MatShellSetMatProductOperation() to use PetscCtxDestroyFn

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Mon, 27 Oct 2025 22:44:59 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>2286efddd54511ab18e8e2adb1e023c4bf8f0b92 - Merge branch &apos;barry/2025-07-30/fix-matshellsetoperationarg&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#2286efddd54511ab18e8e2adb1e023c4bf8f0b92</link>
        <description>Merge branch &apos;barry/2025-07-30/fix-matshellsetoperationarg&apos; into &apos;main&apos;Complete usage of PetscVoidFn and PetscErrorCodeFn and introduce PetscFortranCallbackFnSee merge request petsc/petsc!8615

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Thu, 25 Sep 2025 13:44:49 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>57d508425293f0bb93f59574d14951d8faac9af8 - Change use of void (*)(void) and void (**)(void) in the PETSc API to PetscVoidFn * and PetscVoidFn ** or PetscErrorCodeFn * or PetscErrorCodeFn **</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#57d508425293f0bb93f59574d14951d8faac9af8</link>
        <description>Change use of void (*)(void) and void (**)(void) in the PETSc API to PetscVoidFn * and PetscVoidFn ** or PetscErrorCodeFn * or PetscErrorCodeFn **

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Thu, 31 Jul 2025 01:09:37 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>0b46e949f18ac28417071477034640c76a0832a0 - Merge branch &apos;stefanozampini/submat-zerorows&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#0b46e949f18ac28417071477034640c76a0832a0</link>
        <description>Merge branch &apos;stefanozampini/submat-zerorows&apos; into &apos;main&apos;implement ZeroRowsLocal and ZeroRowsColumnsLocal for local referencesSee merge request petsc/petsc!8705

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Mon, 22 Sep 2025 13:23:04 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>c2be7ffe8233b9bc9298f9349fad0332d27fd173 - Mat: add ops for zerorowscolumnslocal</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#c2be7ffe8233b9bc9298f9349fad0332d27fd173</link>
        <description>Mat: add ops for zerorowscolumnslocal

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Sun, 14 Sep 2025 16:04:55 +0000</pubDate>
        <dc:creator>Stefano Zampini &lt;stefano.zampini@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>834855d6effb0d027771461c8e947ee1ce5a1e17 - Merge branch &apos;jolivet/clang-format-21&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#834855d6effb0d027771461c8e947ee1ce5a1e17</link>
        <description>Merge branch &apos;jolivet/clang-format-21&apos; into &apos;main&apos;clang-format-21See merge request petsc/petsc!8202

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Wed, 27 Aug 2025 20:14:46 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>966bd95a39c2334d2e2ce17ad22128f3c1861eeb - Convert some SETERRQ() to PetscCheck()</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#966bd95a39c2334d2e2ce17ad22128f3c1861eeb</link>
        <description>Convert some SETERRQ() to PetscCheck()

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Sun, 25 May 2025 18:55:39 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>390d3996fed1e5c2d89175ebb68cf53cdee176f4 - Merge branch &apos;lindad/hypre-control-through-pmat&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#390d3996fed1e5c2d89175ebb68cf53cdee176f4</link>
        <description>Merge branch &apos;lindad/hypre-control-through-pmat&apos; into &apos;main&apos;Change hypre PC option defaults based on hypre matrix memory locationSee merge request petsc/petsc!8505

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Tue, 12 Aug 2025 13:38:37 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>03db1824571927542203d3572ba93afdd6bab0ec - Make MatGetCurrentMemType first class API</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#03db1824571927542203d3572ba93afdd6bab0ec</link>
        <description>Make MatGetCurrentMemType first class API

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Mon, 11 Aug 2025 16:48:44 +0000</pubDate>
        <dc:creator>Alex Lindsay &lt;alexlindsay239@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c1a32f8f82a9b54ff5c81a6a1228bfc110fd0984 - Merge branch &apos;jolivet/cleanup&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#c1a32f8f82a9b54ff5c81a6a1228bfc110fd0984</link>
        <description>Merge branch &apos;jolivet/cleanup&apos; into &apos;main&apos;HousekeepingSee merge request petsc/petsc!8392

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Fri, 09 May 2025 15:46:43 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>8bb0f5c6fef004073486bd40bcac1547cd22e816 - MatOps cleanup</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#8bb0f5c6fef004073486bd40bcac1547cd22e816</link>
        <description>MatOps cleanup

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Wed, 07 May 2025 17:39:21 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>174dc0c8cee294b82b85e4dd3b331b29396264fc - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#174dc0c8cee294b82b85e4dd3b331b29396264fc</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Mon, 28 Apr 2025 18:03:48 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>63ad3209385dbbc7cbf2df88f1357a2b08cd0b3b - Merge branch &apos;barry/2025-04-17/rm-dollar-sign-formated-manualpages/release&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#63ad3209385dbbc7cbf2df88f1357a2b08cd0b3b</link>
        <description>Merge branch &apos;barry/2025-04-17/rm-dollar-sign-formated-manualpages/release&apos; into &apos;release&apos;Remove the last of the uses of $ in the first line of formatted manual pagesSee merge request petsc/petsc!8332

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Fri, 25 Apr 2025 05:19:43 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b44f4de476a10dd52a698c0f9a8f47d015bd1e19 - Remove the last of the uses of $ in the first line of formatted manual pages</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#b44f4de476a10dd52a698c0f9a8f47d015bd1e19</link>
        <description>Remove the last of the uses of $ in the first line of formatted manual pages

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Fri, 25 Apr 2025 05:19:43 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>09b68a49ed2854d1e4985cc2aa6af33c7c4e69b3 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/shell/shell.c#09b68a49ed2854d1e4985cc2aa6af33c7c4e69b3</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/mat/impls/shell/shell.c</description>
        <pubDate>Fri, 04 Apr 2025 16:52:00 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
</channel>
</rss>
