<?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 benchmarkExample.py</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>f748bf6bfc83f133d5068e6a5445afd45844ada1 - Merge branch &apos;eijkhout/fix-script-python&apos; into &apos;main&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#f748bf6bfc83f133d5068e6a5445afd45844ada1</link>
        <description>Merge branch &apos;eijkhout/fix-script-python&apos; into &apos;main&apos;Script: Update python in petscnagupgrade.pySee merge request petsc/petsc!7299

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Fri, 16 Feb 2024 02:49:21 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>1b37a2a7cc4a4fb30c3e967db1c694c0a1013f51 - Remove duplicates and switch to python3</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#1b37a2a7cc4a4fb30c3e967db1c694c0a1013f51</link>
        <description>Remove duplicates and switch to python3

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Thu, 15 Feb 2024 18:03:35 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre@joliv.et&gt;</dc:creator>
    </item>
<item>
        <title>f59157ec7137ce66d08be5433b58f6698a6b311f - Merge remote-tracking branch &apos;origin/release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#f59157ec7137ce66d08be5433b58f6698a6b311f</link>
        <description>Merge remote-tracking branch &apos;origin/release&apos;

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 17 Aug 2021 03:14:38 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>eb9bd38d08d24f50c38651da367237452e28ff66 - Merge branch &apos;hotfix/broken-links&apos; into &apos;release&apos;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#eb9bd38d08d24f50c38651da367237452e28ff66</link>
        <description>Merge branch &apos;hotfix/broken-links&apos; into &apos;release&apos;docs: Fix broken linksSee merge request petsc/petsc!4228

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 17 Aug 2021 03:13:13 +0000</pubDate>
        <dc:creator>Satish Balay &lt;balay@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>a17b96a86aee98ed3c639aae9192027fb50d7593 - docs: Fix broken links</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#a17b96a86aee98ed3c639aae9192027fb50d7593</link>
        <description>docs: Fix broken links

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 17 Aug 2021 03:13:12 +0000</pubDate>
        <dc:creator>Kyle Gerard Felker &lt;kylefelk@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c20d77252dee0f9c80fc6f8b1a6f948e11175edb - Merge branch &apos;jed/promote-examples-tests-tutorials&apos; [petsc/petsc!2610]</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#c20d77252dee0f9c80fc6f8b1a6f948e11175edb</link>
        <description>Merge branch &apos;jed/promote-examples-tests-tutorials&apos; [petsc/petsc!2610]* jed/promote-examples-tests-tutorials:  Promote examples/{tests,tutorials}/ to {tests,tutorials}/

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Sun, 22 Mar 2020 01:49:31 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
<item>
        <title>c4762a1b19cd2af06abeed90e8f9d34fb975dd94 - Promote examples/{tests,tutorials}/ to {tests,tutorials}/</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#c4762a1b19cd2af06abeed90e8f9d34fb975dd94</link>
        <description>Promote examples/{tests,tutorials}/ to {tests,tutorials}/This shortens paths and improves consistency between test target namesand paths to the source and output files.  Most of the work wascompleted by this script, followed by mild cleanup of nonconformingcases.for makefile in `git ls-files &apos;src/*makefile&apos;`; do    if rg -q &apos;DIRS.*\bexamples\b&apos; $makefile; then        base=$(dirname $makefile)        dirs=$(cd $base/examples &amp;&amp; ls -d tests tutorials 2&gt;/dev/null | xargs echo)        perl -pi -e &quot;s#^(DIRS.*)\bexamples\b#\1${dirs}#&quot; $makefile        git rm $base/examples/makefile        for t in $dirs; do            git mv $base/examples/$t $base/            perl -pi -e &quot;s#^(LOCDIR[[:space:]]*=).*#\1 $base/$t/#&quot; $base/$t        done    fidonegit grep -l -E -z &apos;examples/(tutorials|tests)&apos; | xargs -0 perl -pi -e &apos;s#examples/(tutorials|tests)#\1#g&apos;git checkout @ \    src/docs/website/documentation/changes/ \    src/benchmarks/results/

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Wed, 18 Mar 2020 15:41:21 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
<item>
        <title>302280419462abc2be63cca5e320efb09944f063 - Merge branch &apos;knepley/feature-benchmark-plotonly&apos; [PR #1923]</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#302280419462abc2be63cca5e320efb09944f063</link>
        <description>Merge branch &apos;knepley/feature-benchmark-plotonly&apos; [PR #1923]* knepley/feature-benchmark-plotonly:Benchmark: Add the --plotOnly flag

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Wed, 31 Jul 2019 15:00:31 +0000</pubDate>
        <dc:creator>Karl Rupp &lt;me@karlrupp.net&gt;</dc:creator>
    </item>
<item>
        <title>4992a29c8af173a30b29871e292067c816d21b83 - Benchmark: Add the --plotOnly flag</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#4992a29c8af173a30b29871e292067c816d21b83</link>
        <description>Benchmark: Add the --plotOnly flag

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 30 Jul 2019 21:27:23 +0000</pubDate>
        <dc:creator>Matthew G. Knepley &lt;knepley@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>321e5caf6dfe65e4f6d6ead4d6d8ce01eed13eb2 - Merged in knepley/feature-log-benchmarking (pull request #1743)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#321e5caf6dfe65e4f6d6ead4d6d8ce01eed13eb2</link>
        <description>Merged in knepley/feature-log-benchmarking (pull request #1743)Knepley/feature log benchmarking

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 04 Jun 2019 05:59:43 +0000</pubDate>
        <dc:creator>Matthew Knepley &lt;knepley@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>2247410dcb7f1dc155341c92d86930ca6b32b5cb - Benchmark: Rework script to do plots for new logging format</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#2247410dcb7f1dc155341c92d86930ca6b32b5cb</link>
        <description>Benchmark: Rework script to do plots for new logging format- Get rid of some specialized GPU stuff- Now support CSV logging- Some examples for tutorials at bottom

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Sat, 01 Jun 2019 17:12:32 +0000</pubDate>
        <dc:creator>Matthew G. Knepley &lt;knepley@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>391e379223c8ad233f201b9d10bca97f975e49a9 - Merged in barry/check-bad-urls (pull request #1685)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#391e379223c8ad233f201b9d10bca97f975e49a9</link>
        <description>Merged in barry/check-bad-urls (pull request #1685)Barry/check bad urlsApproved-by: Patrick Sanan &lt;patrick.sanan@gmail.com&gt;Approved-by: Junchao Zhang &lt;junchao.zhang@gmail.com&gt;

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Wed, 22 May 2019 13:08:15 +0000</pubDate>
        <dc:creator>BarryFSmith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>a8d69d7b0124b1e6ce75950a93e6ff079980e86f - Fixed out-dated URLS using make checkbadURLS REPLACE=1</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#a8d69d7b0124b1e6ce75950a93e6ff079980e86f</link>
        <description>Fixed out-dated URLS using make checkbadURLS REPLACE=1One manual fix of https://en.wikipedia.org/wiki/Buckingham_&#960;_theorem since the automatic tool dropped the first _ for some reasonManual fix of //faq.html since the automatic tool incorrectly replaced /faq.html to //faq.html in some locationsThese are largely updates of http to https but have a variety of other website location changesOnce this branch is in master individual developers can run make checkbadURLS and fix URLs related to their projects manuallyCommit-type: bug-fix, documentation

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Sun, 19 May 2019 22:27:44 +0000</pubDate>
        <dc:creator>Barry Smith &lt;bsmith@mcs.anl.gov&gt;</dc:creator>
    </item>
<item>
        <title>83c10b7ed13e5cf0bac5061cf1169b930c013b5f - Merged petsc/petsc into master</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#83c10b7ed13e5cf0bac5061cf1169b930c013b5f</link>
        <description>Merged petsc/petsc into master

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Tue, 04 Dec 2018 05:09:32 +0000</pubDate>
        <dc:creator>Pierre Jolivet &lt;pierre.jolivet@enseeiht.fr&gt;</dc:creator>
    </item>
<item>
        <title>a5a49157e8f0cda1ee246d4b38ccd40aa8bd8906 - Merge branch &apos;master&apos; into jpusztay/feature-swarm-symplectic-example</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#a5a49157e8f0cda1ee246d4b38ccd40aa8bd8906</link>
        <description>Merge branch &apos;master&apos; into jpusztay/feature-swarm-symplectic-example

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Thu, 25 Oct 2018 15:44:39 +0000</pubDate>
        <dc:creator>Joseph Pusztay &lt;josephpusztay@Josephs-MacBook-Pro.local&gt;</dc:creator>
    </item>
<item>
        <title>e901d7f783378c340f80a71ad0d479b16cb27ec8 - Merge branch &apos;master&apos; into jpustay/feature-swarm-example</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#e901d7f783378c340f80a71ad0d479b16cb27ec8</link>
        <description>Merge branch &apos;master&apos; into jpustay/feature-swarm-example

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Thu, 25 Oct 2018 15:37:37 +0000</pubDate>
        <dc:creator>Joseph Pusztay &lt;josephpusztay@Josephs-MacBook-Pro.local&gt;</dc:creator>
    </item>
<item>
        <title>baeaa64efad046693dfe8565b2a340832b8902ce - Merged petsc/petsc into master</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#baeaa64efad046693dfe8565b2a340832b8902ce</link>
        <description>Merged petsc/petsc into master

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Thu, 25 Oct 2018 15:34:14 +0000</pubDate>
        <dc:creator>Joseph Pusztay &lt;josephpu@buffalo.edu&gt;</dc:creator>
    </item>
<item>
        <title>df90af5656ec20a6e3cb673af4e9b5c5d856317c - Merge branch &apos;master&apos; into arcowie-rem/feature-error-logging</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#df90af5656ec20a6e3cb673af4e9b5c5d856317c</link>
        <description>Merge branch &apos;master&apos; into arcowie-rem/feature-error-logging* master: (393 commits)  Bib: Update reference  Mat: Doc fix  Bib: Updated ref  PetscDS: Doc fixes  PC+LU: Do not try to refactor an already factored matrix  Mat: Small fix for checking and docs  Mat: Added MatSetFactorType() - Needed it when making a shell matrix look factored  PetscDS: Added PetscDSUpdateBoundary() - Lets the user change the boundary condition  single precision produces different convergence history  p4est: has a dependency on zlib - so handle it correctly  Add -mat_mffd_complex to use the Lyness complex number trick to compute J_u * v instead of differencing.  Replace VecWAXPY by VecAXPY if needed  Revert &quot;Replace VecWAXPY by VecAXPY if needed&quot;  Replace VecWAXPY by VecAXPY if needed  MatHermitianTransposeGetMat and MatCreateVecs  ex19: Updated test filter to avoid false positives.  DM: Improved Global-To-Natural docs Suggested-by: Josh L &lt;ysjosh.lo@gmail.com&gt;  Do not build shared openblas when doing static build  Upgrade OpenBLAS to 0.3.3  test: add alt output file for changes in OSX-10.14 and Xcode-10.0 [perhaps related to ML]  ...Conflicts:	src/vec/is/utils/vsectionis.c

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Wed, 24 Oct 2018 18:29:36 +0000</pubDate>
        <dc:creator>Matthew G. Knepley &lt;knepley@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>27821aea53b95b424fe865570a4f61259f97b2ea - Merge branch &apos;jed/python3-futurize&apos; [PR #1122]</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#27821aea53b95b424fe865570a4f61259f97b2ea</link>
        <description>Merge branch &apos;jed/python3-futurize&apos; [PR #1122]Merge announces support for Python 3.4+ in changes/dev.html.* jed/python3-futurize: (44 commits)  gmakegentest: avoid prefix matching in regex  dm tests ex23.c: fix test args: -one -two -three  gmakegentest: more fixes  gmakegentest: fix processing of arguments containing number followed by &quot;-&quot;  gmakegentest: always loop over nsize; Python-3 fixes  python3: add in a python-3.4 test  python: fix build on osx/opensolaris - where &apos;RANLIB=ranlib -c&apos; i.e with a space..  python3: fix --download-ptscotch error  configure: glob() gets executed early - whereas we need to get file list later [after &apos;make all&apos; or equivalent] so revert back to using shell to get file-list  python3: map() requires a list modifier for this usage.  python: replace ModuleNotFoundError a python3.6+ feature with ImportError  config: call setup to ensure that debugLevel is set  nightlies: switch linux-pkg-dbg-ftn-interfaces to python3  config: enable Python-3  config: urllib/urlparse updates for Python-3 compatibility  config fblaslapack: use isIBM instead of manual test  python: replace commands with subprocess  Fix LOCDIR paths  generateetags.py: switch from commands to subprocess; unicode fix  python: don&apos;t import commands when it isn&apos;t used  ...

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Mon, 22 Oct 2018 15:49:06 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
<item>
        <title>a01632ec7a88f75197c0507a6dda80bb47256e7c - config: eschew dict.iteritems() for dict.items()</title>
        <link>http://opengrok.kc2vjw.com:8080/history/petsc/src/benchmarks/benchmarkExample.py#a01632ec7a88f75197c0507a6dda80bb47256e7c</link>
        <description>config: eschew dict.iteritems() for dict.items()Fast enough in Python-2 and the only way in Python-3.

            List of files:
            /petsc/src/benchmarks/benchmarkExample.py</description>
        <pubDate>Fri, 14 Sep 2018 04:04:52 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
</channel>
</rss>
