<?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 ex237.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>71383f7570b59a18517995bd8cb04ed04c3be442 - Merge branch &apos;jolivet/feature-matproduct_atb-seqbaij&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#71383f7570b59a18517995bd8cb04ed04c3be442</link>
        <description>Merge branch &apos;jolivet/feature-matproduct_atb-seqbaij&apos; into &apos;main&apos;MatSeqBAIJ: add MatProduct_AtB implementation (B of type MatSeqDense)See merge request petsc/petsc!8848

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Mon, 17 Nov 2025 21:51:51 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>1766d9c3994a6b3bf41d91bf7baa12ea3f65f7c9 - MatSeqBAIJ: add MatProduct_AtB implementation (B of type MatSeqDense)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#1766d9c3994a6b3bf41d91bf7baa12ea3f65f7c9</link>
        <description>MatSeqBAIJ: add MatProduct_AtB implementation (B of type MatSeqDense)

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Thu, 13 Nov 2025 05:13:03 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>609caa7c8c030312b00807b4f015fd827bb80932 - Merge branch &apos;jolivet/rm-explicit-empty-output_file&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#609caa7c8c030312b00807b4f015fd827bb80932</link>
        <description>Merge branch &apos;jolivet/rm-explicit-empty-output_file&apos; into &apos;main&apos;Remove 535 empty .out and consolidate the use of output/empty.outSee merge request petsc/petsc!8538

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 19 Jul 2025 04:14:12 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>3886731f808f6f9ca8348e6e791c818340d72f91 - Remove explicitly listed empty files and switch to output/empty.out</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#3886731f808f6f9ca8348e6e791c818340d72f91</link>
        <description>Remove explicitly listed empty files and switch to output/empty.out

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Wed, 09 Jul 2025 05:18:30 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>6c37f76f2ace6b1ab1a4a8f1d7a04dee3e7f2aa9 - Merge branch &apos;tisaac/feature-log-handler&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#6c37f76f2ace6b1ab1a4a8f1d7a04dee3e7f2aa9</link>
        <description>Merge branch &apos;tisaac/feature-log-handler&apos; into &apos;main&apos;Deglobalize logging into PetscLogHandler and PetscLogStateSee merge request petsc/petsc!6709

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Thu, 27 Jul 2023 15:06:19 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>2611ad710242b3c70d66651ef7e40f9450d305e2 - Profiling: Improve !defined(PETSC_USE_LOG) #defines</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#2611ad710242b3c70d66651ef7e40f9450d305e2</link>
        <description>Profiling: Improve !defined(PETSC_USE_LOG) #defines- If we cast macro arguments to void, we can avoid unused errors that have  forced lots of conditionally included code like this:```c  #if defined(PETSC_USE_LOG)  PetscLogEvent event;  #endif```- Having global counters like petsc_TotalFlops externed event  if !PetscDefined(USE_LOG) helps to remove a lot of needless  `#ifdef`s around code that can instead be placed in  `if (PetscDefined(USE_LOG)) {}` blocks.

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Fri, 14 Jul 2023 04:24:59 +0000</pubDate>
        <dc:creator>Toby Isaac &lt;toby.isaac@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>3f8ef5f4dc5316d3f154bbe9c697c3c2b5733ca9 - Merge branch &apos;balay/ci-migrate-2&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#3f8ef5f4dc5316d3f154bbe9c697c3c2b5733ca9</link>
        <description>Merge branch &apos;balay/ci-migrate-2&apos; into &apos;main&apos;CI: migrate to Ubuntu-22.04 (part-2):See merge request petsc/petsc!6124

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Thu, 02 Mar 2023 06:24:08 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>7864358abc283cb7722535eb02ef02a723e06bd8 - CI: migrate to Ubuntu-22.04 (part-2):</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#7864358abc283cb7722535eb02ef02a723e06bd8</link>
        <description>CI: migrate to Ubuntu-22.04 (part-2):- linux-sycl-double- linux-cxx-cmplx-pkgs-64idx-gcov- arch-ci-linux-pkgs-gcov- arch-ci-linux-matlab-ilp64-gcov: Fix warnings of type: /scratch/svcpetsc/petsc.y/src/sys/utils/str.c:612:10: error: &apos;epar&apos; may be used uninitialized in this function [-Werror=maybe-uninitialized] src/mat/tests/ex237.c src/sys/dll/dl.c src/sys/fileio/rpath.c src/sys/utils/str.c- arch-ci-linux-pgi- arch-ci-linux-nagfor: migrate to u20 [as u22 gives build errors with MPICH?]- arch-ci-linux-intel-cmplx: workaround build failures of chaco, scalapack, hypre, bamg- arch-ci-linux-intel: Fix: /scratch/svcpetsc/petsc.x/src/ts/tests/ex30.c:404:13: error: ignoring return value of function declared with &apos;warn_unused_result&apos; attribute [-Werror,-Wunused-result] src/ts/tests/ex30.c- linux-gcc-ifc-cmplx- gce-nfs-short -&gt; gce-u22-short

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Mon, 27 Feb 2023 19:31:08 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>061e922f3926be00487707c73b78dd3d40309129 - Merge branch &apos;jacobf/2022-09-21/2-bike-2-shed&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#061e922f3926be00487707c73b78dd3d40309129</link>
        <description>Merge branch &apos;jacobf/2022-09-21/2-bike-2-shed&apos; into &apos;main&apos;Feature: Bicycle Storage Facility 2See merge request petsc/petsc!5661

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Thu, 22 Sep 2022 02:09:24 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>d71ae5a4db6382e7f06317b8d368875286fe9008 - source code format changes due to .clang-format changes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#d71ae5a4db6382e7f06317b8d368875286fe9008</link>
        <description>source code format changes due to .clang-format changes

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Wed, 21 Sep 2022 21:15:28 +0000</pubDate>
        <dc:creator>Jacob Faibussowitsch &lt;jacob.fai@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>38f6737523616bfeabdd577adb30ea0990bf5fe7 - Merge branch &apos;jolivet/fix-style-one-liners&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#38f6737523616bfeabdd577adb30ea0990bf5fe7</link>
        <description>Merge branch &apos;jolivet/fix-style-one-liners&apos; into &apos;main&apos;Remove braces from one-linersSee merge request petsc/petsc!5557

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 27 Aug 2022 15:31:14 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>48a46eb9bd028bec07ec0f396b1a3abb43f14558 - Remove braces from one-liners</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#48a46eb9bd028bec07ec0f396b1a3abb43f14558</link>
        <description>Remove braces from one-liners

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 27 Aug 2022 15:31:14 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>58d68138c660dfb4e9f5b03334792cd4f2ffd7cc - Merge branch &apos;barry/2022-08-21/clang-format-source&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#58d68138c660dfb4e9f5b03334792cd4f2ffd7cc</link>
        <description>Merge branch &apos;barry/2022-08-21/clang-format-source&apos; into &apos;main&apos;format repository with clang-formatSee merge request petsc/petsc!5541

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Tue, 23 Aug 2022 05:26:23 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>9371c9d470a9602b6d10a8bf50c9b2280a79e45a - clang-format: convert PETSc sources to comply with clang-format</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#9371c9d470a9602b6d10a8bf50c9b2280a79e45a</link>
        <description>clang-format: convert PETSc sources to comply with clang-format

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Mon, 22 Aug 2022 15:20:12 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>5cab5458055e6544d97095d04e76587ba3d30732 - Merge branch &apos;barry/2022-07-23/add-petscbeginuser&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#5cab5458055e6544d97095d04e76587ba3d30732</link>
        <description>Merge branch &apos;barry/2022-07-23/add-petscbeginuser&apos; into &apos;main&apos;Add PetscFunctionBeginUser to all PETSc C/C++ examplesSee merge request petsc/petsc!5470

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Tue, 26 Jul 2022 19:33:37 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>327415f76d85372a4417cf1aaa14db707d4d6c04 - Add PetscFunctionBeginUser to all PETSc C/C++ examples</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#327415f76d85372a4417cf1aaa14db707d4d6c04</link>
        <description>Add PetscFunctionBeginUser to all PETSc C/C++ examplesNow the stack frames will contain the main program and the correct line numbers in themgit ls-files | egrep &quot;(tutorials|tests)&quot; | xargs sed -i  &quot;s?\(PetscCall(PetscInitialize(&amp;argc\)?PetscFunctionBeginUser;\n  \1?g&quot;Commit-type: error-checking, testing-fix/spend 15m

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 23 Jul 2022 12:34:06 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>bda772717712deb013c2250756e6fdd59a1ea127 - Merge branch &apos;barry/2022-06-24/linenumbers-petscstack&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#bda772717712deb013c2250756e6fdd59a1ea127</link>
        <description>Merge branch &apos;barry/2022-06-24/linenumbers-petscstack&apos; into &apos;main&apos;Fixes/improvements for PETSc stack handlingSee merge request petsc/petsc!5368

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Wed, 20 Jul 2022 13:07:33 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>792fecdfe9134cce4d631112660ddd34f063bc17 - Cleanup and unify naming of PetscCall routines</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#792fecdfe9134cce4d631112660ddd34f063bc17</link>
        <description>Cleanup and unify naming of PetscCall routinesCommit-type: housekeeping/spend 10m

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 25 Jun 2022 04:47:44 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>ef1023bda9d7138933c4c6fa7b7cf4a26d60c86d - Fix handling of PetscStack for callback functions and external package calls (and update slepc in sync)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#ef1023bda9d7138933c4c6fa7b7cf4a26d60c86d</link>
        <description>Fix handling of PetscStack for callback functions and external package calls (and update slepc in sync)Information was often wrong; incorrect filenames and line numbers removedAlso unified naming for callback function stack framesCommit-type: error-checking, debugability/spend 2h

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Sat, 25 Jun 2022 03:50:50 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>b33f4bec9907f62d08679bf5e7ff704a731f8c0f - Merge branch &apos;jolivet/feature-less-checkfalse&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/mat/tests/ex237.c#b33f4bec9907f62d08679bf5e7ff704a731f8c0f</link>
        <description>Merge branch &apos;jolivet/feature-less-checkfalse&apos; into &apos;main&apos;Dividing by four the number of PetscCheckFalse()See merge request petsc/petsc!5072

            List of files:
            /petsc/src/mat/tests/ex237.c</description>
        <pubDate>Tue, 05 Apr 2022 17:12:40 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
</channel>
</rss>
