<?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 index.md</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>d538d163358b73723887a2d3949507319f119601 - doc - improve internal API documentation (#1834)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#d538d163358b73723887a2d3949507319f119601</link>
        <description>doc - improve internal API documentation (#1834)* doc - improve internal API documentation* doc - clarify delegation* doc - update wording for clarityCo-authored-by: James Wright &lt;james@jameswright.xyz&gt;* doc - clarify memcheck==valgrind* doc - clarify shared gpu backends* doc - clarify l/e/q-vecs* doc - clarify occa backend status* doc - more inheritance clarification* doc - minor claification to QF fields* minor - remove unneeded variables* doc - update inheritance language* doc - update shared description* doc - more gpu notes* doc - update fallback description* doc - clarify fallback is only for pc support* doc - minor updates to user facing GPU section* doc - minor reordering of major sections---------Co-authored-by: James Wright &lt;james@jameswright.xyz&gt;

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Mon, 16 Jun 2025 16:29:41 +0000</pubDate>
        <dc:creator>Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;</dc:creator>
    </item>
<item>
        <title>8c7774c6037866e54e1598be234a00f10d984861 - Merge pull request #1427 from CEED/jeremy/gpu-doc</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#8c7774c6037866e54e1598be234a00f10d984861</link>
        <description>Merge pull request #1427 from CEED/jeremy/gpu-docAdd gpu dev notes

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Mon, 18 Dec 2023 17:14:35 +0000</pubDate>
        <dc:creator>Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;</dc:creator>
    </item>
<item>
        <title>b94bfe40b009cf15c75d3afd8990a257ba3d552b - doc - add gpu dev notes</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#b94bfe40b009cf15c75d3afd8990a257ba3d552b</link>
        <description>doc - add gpu dev notes

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Fri, 15 Dec 2023 19:03:53 +0000</pubDate>
        <dc:creator>Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;</dc:creator>
    </item>
<item>
        <title>80a9ef0545a39c00cdcaab1ca26f8053604f3120 - Allow CeedScalar to be single precision  (#788)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#80a9ef0545a39c00cdcaab1ca26f8053604f3120</link>
        <description>Allow CeedScalar to be single precision  (#788)One can modify `ceed.h` to include `ceed-f32.h` and then use single precision. This is tested for C in CI and has been tested by developers with Rust, Julia, and Python. This interface is evolving and should be considered experimental at this time (thus lack of automated build support).* Introduce CeedScalarType enum* WIP changes to allow different definitions of CeedScalar* Introduce new header files for float and double* Only use avx tensor contract and MAGMA non-tensor basis if CeedScalar is double* WIP changes to allow CeedScalar to be float* WIP start trying to adjust test tolerances for float or double* fix typos in comments* install ceed-f32/64 headers* Fix missing casts for hipMAGMA element restrictions* make CeedQFunctionContextGetContextSize available for Python bindings* Changes to Python bindings to allow CeedScalar to be float* WIP adjust Python tests for float or double* make style* remove QFunctionContextGetContextSize from backend header* Use quotes instead of &lt;&gt; in include statement* Remove unncessary includes* Update tolerances for tests* [Julia] allow CeedScalar to be Float32* [Julia] Use Preferences instead of custom build configuration# Conflicts:#	julia/LibCEED.jl/src/C.jl* [Makefile] Change definition of CC_VENDOR so it works with cross-compilation* [Julia] Use Preferences in CI# Conflicts:#	.github/workflows/julia-test-with-style.yml* [Julia] Update docs about preferences* [Julia] Add test/Project.toml workaround for Preferences* Add CeedGetScalarType to get the type of CeedScalar at runtime* [Julia] Move functions from Ceed.jl to LibCEED.jl* [Julia] Add support for getting library path and scalar type at runtime* [Julia] Minor change to checking if CUDA is loaded* [Julia] Check correct CeedScalar types in basis functions* [Julia] Fix tests comparing with output file* [Julia] Change devtests to use CeedScalar instead of Float64* Update test 402 so context will be same size in double or float* Update tolerances for ceed examples* [Julia] CUDA fixes* remove unused variable in t208* SchurDecomposition: do not compute tau on final iteration* Update tolerances for some basis tests (for single precision)* Make style* Python style fixes for basis test* Add single precision output for t300 and t320 and adjust checks; skip t541 in single* Add LCOV exclusions after moving to new line* fix spacing* Python: make CEED_EPSILON available as libceed.EPSILON* Python: optional parameter to specify different output file for test comparison* Python: update tests&apos; use of EPSILON and change test_300 output file for single precision* Python: add convenience function for getting dtype corresponding to CeedScalar* rust - add single precision support* [Julia] Fall back on Float64 if CeedGetScalarType is not available* [Julia] style* Adjust tolerance for t301* xsmm - add single precision support* avx - add single precision support* Add initial single precision support for MAGMA non-tensor basis* Skip t300 and t320 in single precision; revert Python t300 changes* Revert output changes for t300 and t320 in junit* [Julia] Changes to autogenerated bindings for mixed precision* [Julia] style* [Julia] Check scalar type when changing libceed library pathThe check is also performed when the package is loaded. This prevents having torestart the Julia session twice* [Julia] Require JLLWrappers version 1.3This is needed to use Preferences to change the library path* Add documentation page for precision developmentCo-authored-by:  Will Pazner &lt;will.e.p@gmail.com&gt;* Cleanup from merge: remove old README* Return CEED_ALIGN to backend.h* Make Fortran compiler (FC) optional; empty skips Fortran testsUse in Python and Rust builds, which may not have a Fortran compilerinstalled and thus would produce confusing output.* Add single precision CI test for NoetherCo-authored-by: Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;Co-authored-by: Will Pazner &lt;will.e.p@gmail.com&gt;Co-authored-by: Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;Co-authored-by: Jed Brown &lt;jed@jedbrown.org&gt;

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Thu, 02 Sep 2021 21:28:30 +0000</pubDate>
        <dc:creator>Natalie Beams &lt;246972+nbeams@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>cd3003229e5325bdf31f9e102d9fa328f6582fc1 - Merge pull request #703 from CEED/jed/doc-myst-nb</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#cd3003229e5325bdf31f9e102d9fa328f6582fc1</link>
        <description>Merge pull request #703 from CEED/jed/doc-myst-nbdoc: replace recommonmark with MyST

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Fri, 13 Aug 2021 23:35:28 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
<item>
        <title>bcb2dfae4c301ddfdddf58806f08f6e7d17f4ea5 - doc: replace recommonmark with MyST and migrate ReST to MyST</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/doc/sphinx/source/index.md#bcb2dfae4c301ddfdddf58806f08f6e7d17f4ea5</link>
        <description>doc: replace recommonmark with MyST and migrate ReST to MySTThis offers more familiar syntax for most writing, as well as natural$\pi$ math (versus :math:`\pi`) and markdown syntax for all ReSTfeatures.The API doc stubs remain in ReST as recommended for autodoc.https://myst-parser.readthedocs.io/en/latest/sphinx/use.html#use-sphinx-ext-autodoc-in-markdown-filesThe change was largely implemented usinghttps://github.com/executablebooks/rst-to-myst/ with some manualfix-ups. Tables (both ReST built-in tables and list-table) remain undereval-rst until they can be manually updated.

            List of files:
            /libCEED/doc/sphinx/source/index.md</description>
        <pubDate>Thu, 04 Feb 2021 05:01:36 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
</channel>
</rss>
