<?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 mmaij.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>901f93825bbaa60582af604c6700caf57884a2e1 - Merge branch &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#901f93825bbaa60582af604c6700caf57884a2e1</link>
        <description>Merge branch &apos;release&apos;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 02 Jan 2026 00:10:15 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>13f45048d0bef35c0eb6423fbbebed16a388342a - Merge branch &apos;rmills/fix-matdiagonalscalelocal/release&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#13f45048d0bef35c0eb6423fbbebed16a388342a</link>
        <description>Merge branch &apos;rmills/fix-matdiagonalscalelocal/release&apos; into &apos;release&apos;Fix long-standing bug in MatMPIAIJDiagonalScaleLocalSetUp()See merge request petsc/petsc!8910

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Thu, 01 Jan 2026 23:00:40 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>498e7f421189b61b5d195847e3c00b7d2ff32b48 - Remove legacy &apos;+1&apos; allocations in XXXDiagonalScaleLocalSetUp() routines for AIJ and BAIJ parallel matrices</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#498e7f421189b61b5d195847e3c00b7d2ff32b48</link>
        <description>Remove legacy &apos;+1&apos; allocations in XXXDiagonalScaleLocalSetUp() routines for AIJ and BAIJ parallel matricesThis commit removes &apos;+1&apos;s in some memory allocations that are believedto be leftover from long ago to handle corner cases with malloc() callsof size 0, which some implementations would not handle correctly. Thisceased to be an issue long ago.Thanks-to: Pierre Jolivet &lt;pierre@joliv.et&gt;, Barry Smith &lt;bsmith@petsc.dev&gt;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Wed, 31 Dec 2025 23:26:53 +0000</pubDate>
        <dc:creator>Richard Tran Mills &lt;rmills@rmills.org&gt;</dc:creator>
    </item>
<item>
        <title>b1f109025f5dcab6e45bb5c0da1899ec72cc9477 - Fix long-standing bug in MatMPIAIJDiagonalScaleLocalSetUp()</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#b1f109025f5dcab6e45bb5c0da1899ec72cc9477</link>
        <description>Fix long-standing bug in MatMPIAIJDiagonalScaleLocalSetUp()This commit fixes a problem I discovered in October 2017 and then forgot aboutafter some unsuccessful initial attempts to find the problem. The MPIAIJimplementation for MatDiagonalScaleLocalSetUp() was broken when thelocal-to-global mappings in PETSc were refactored to always useblock indices; the MPIAIJ implementation ofMatDiagonalScaleLocalSetUp(), however, used element-wise, not blockindexing, and this was not refactored at the time, as it was overlookeddue to having no test case.My commit finally fixes this; it also fixes several memory leaks in theAIJ and BAIJ implementations of MatDiagonalScaleLocal() which wereoverlooked, again, due to having no test cases.

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Tue, 23 Dec 2025 02:38:12 +0000</pubDate>
        <dc:creator>Richard Tran Mills &lt;rmills@rmills.org&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/aij/mpi/mmaij.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/aij/mpi/mmaij.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>ac530a7e429a3ef5a9263376acf6071236a5db98 - Remove unnecessary braces around one-liners</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#ac530a7e429a3ef5a9263376acf6071236a5db98</link>
        <description>Remove unnecessary braces around one-linersgit grep -lE &quot;[ ]*(if|for|while) \(.*\) {[^;]*;[^;]*}$&quot; -- &apos;*.c&apos; &apos;*.cxx&apos; &apos;*.cu&apos; &apos;*.h&apos; &apos;*.hpp&apos; &apos;*.cpp&apos; | xargs sed -i &apos;&apos; -E &apos;s#([ ]*)(if|for|while) \((.*)\) {([^;]*);([^;]*)}$#\1\2 \(\3\)\4;\5#&apos;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Tue, 03 Jun 2025 13:10:33 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>3531e58460127287163dcc8e4132a2df525e39a6 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#3531e58460127287163dcc8e4132a2df525e39a6</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 03 Jan 2025 20:11:55 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>f4f5f0af1ce83af575ab0758ab8b415824590369 - Merge branch &apos;lindad/mpi-fix-reset-preallocation&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#f4f5f0af1ce83af575ab0758ab8b415824590369</link>
        <description>Merge branch &apos;lindad/mpi-fix-reset-preallocation&apos; into &apos;release&apos;Fix MatResetPreallocation_MPIAIJSee merge request petsc/petsc!8063

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 03 Jan 2025 15:58:57 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>eb14dd146a89a5ef91eac0ce18ce74e06f74fd1f - Fix MatResetPreallocation_MPIAIJ</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#eb14dd146a89a5ef91eac0ce18ce74e06f74fd1f</link>
        <description>Fix MatResetPreallocation_MPIAIJPer Barry&apos;s suggesetion I inserted a `MatDisAssemble` whichimmediately fixed my issue. I will work on adding a test

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 20 Dec 2024 23:39:01 +0000</pubDate>
        <dc:creator>Alex Lindsay &lt;alexlindsay239@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>970231d20df44f79b27787157e39d441e79f434b - Merge branch &apos;jolivet/clang-format-18&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#970231d20df44f79b27787157e39d441e79f434b</link>
        <description>Merge branch &apos;jolivet/clang-format-18&apos; into &apos;main&apos;clang-format version 18See merge request petsc/petsc!6902

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Thu, 07 Mar 2024 12:36:17 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>f4f49eeac7efa77fffa46b7ff95a3ed169f659ed - Remove multiple parentheses and extra semicolon</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#f4f49eeac7efa77fffa46b7ff95a3ed169f659ed</link>
        <description>Remove multiple parentheses and extra semicolongit grep -l -E &quot;\(\([a-zA-Z0-9_]+\)\(\*[a-zA-Z0-9_]+\)[, )]&quot; | xargs sed -r -i&apos;&apos; &apos;s#\(\(([a-zA-Z0-9_]+)\)\(\*([a-zA-Z0-9_]+)\)([, )])#\(\(\1\)\*\2\3#g&apos;git grep -l -E &quot;Petsc(.)*\(\(\*[a-zA-Z0-9_]*\),&quot; | xargs sed -r -i&apos;&apos; &apos;s#Petsc([a-zA-Z0-9_]*)\(\(\*([a-zA-Z0-9_]*)\), #Petsc\1(*\2, #g&apos;git grep -l -E &quot;([\!\&amp;\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|-&gt;)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)&quot; | xargs sed -r -i&apos;&apos; &apos;s#([\!\&amp;\~\*\(]|\)\)|\([^,\*\(]+\**\))\(([a-zA-Z0-9_]+((\.|-&gt;)[a-zA-Z0-9_]+|\[[a-zA-Z0-9_ \%\+\*\-]+\])+)\)#\1\2#g&apos;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Sun, 11 Feb 2024 06:40:18 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>e8e8640d1cb9a3a2f50c0c0d7b26e5c4d521e2e4 - Merge branch &apos;jolivet/rm-first-empty-line&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#e8e8640d1cb9a3a2f50c0c0d7b26e5c4d521e2e4</link>
        <description>Merge branch &apos;jolivet/rm-first-empty-line&apos; into &apos;main&apos;Remove first and last empty linesSee merge request petsc/petsc!6892

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Tue, 26 Sep 2023 16:50:23 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>92bec4eefde5b79327e7cea3b0266e7580ec8183 - Remove first and last empty lines</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#92bec4eefde5b79327e7cea3b0266e7580ec8183</link>
        <description>Remove first and last empty lines

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Tue, 26 Sep 2023 16:50:22 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>9c5460f9064ca60dd71a234a1f6faf93e7a6b0c9 - Merge branch &apos;jacobf/2023-08-09/linter-detect-static-function-candidates&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#9c5460f9064ca60dd71a234a1f6faf93e7a6b0c9</link>
        <description>Merge branch &apos;jacobf/2023-08-09/linter-detect-static-function-candidates&apos; into &apos;main&apos;Linter detect possible static functionsSee merge request petsc/petsc!6796

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Thu, 17 Aug 2023 16:08:06 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ba38deedd2838b0f18e3744cb0bafd6392690fde - Delete unused code</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#ba38deedd2838b0f18e3744cb0bafd6392690fde</link>
        <description>Delete unused code

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Tue, 15 Aug 2023 16:24:20 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>49bfc494910f4d78b1eca190194aac4bef3fac08 - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#49bfc494910f4d78b1eca190194aac4bef3fac08</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 16 Jun 2023 03:52:11 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>fcf53b9570b947a9f6cf66b222844a8ba8a699c1 - Merge branch &apos;stefanozampini/fix-mpibaij-mpiaij-conversion&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#fcf53b9570b947a9f6cf66b222844a8ba8a699c1</link>
        <description>Merge branch &apos;stefanozampini/fix-mpibaij-mpiaij-conversion&apos; into &apos;release&apos;MATMPIBAIJ: fix non const operation in conversion to MPIAIJSee merge request petsc/petsc!6582

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 16 Jun 2023 03:51:43 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>7c6128858472e001f78579e153aaab71110fb22e - MATMPIBAIJ: fix non const operation in conversion to MPIAIJ</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#7c6128858472e001f78579e153aaab71110fb22e</link>
        <description>MATMPIBAIJ: fix non const operation in conversion to MPIAIJMake MatDisAssemble_MPIAIJ and MatDisAssemble_MPIBAIJ support null offdiagonal block

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Fri, 16 Jun 2023 03:51:43 +0000</pubDate>
        <dc:creator>Stefano Zampini &lt;stefano.zampini@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>31d78bcd2b98084dc1368b20eb1129c8b9fb39fe - Merge branch &apos;jacobf/2022-12-10/petscerrorcode-nodiscard&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#31d78bcd2b98084dc1368b20eb1129c8b9fb39fe</link>
        <description>Merge branch &apos;jacobf/2022-12-10/petscerrorcode-nodiscard&apos; into &apos;main&apos;Feature: Non-discardable PetscErrorCodeSee merge request petsc/petsc!5923

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Thu, 02 Feb 2023 20:39:47 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>3ba1676111f5c958fe6c2729b46ca4d523958bb3 - Make PetscErrorCode a non-discardable enum</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/impls/aij/mpi/mmaij.c#3ba1676111f5c958fe6c2729b46ca4d523958bb3</link>
        <description>Make PetscErrorCode a non-discardable enum

            List of files:
            /petsc/src/mat/impls/aij/mpi/mmaij.c</description>
        <pubDate>Sat, 10 Dec 2022 18:29:11 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
