From: Martin Kronbichler Date: Tue, 10 Sep 2019 09:24:42 +0000 (+0200) Subject: Add changelog X-Git-Tag: v9.2.0-rc1~1054^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e2899963afc782814bf12ec8de3decfdbacc058;p=dealii.git Add changelog --- diff --git a/doc/news/changes/minor/20190910MartinKronbichler b/doc/news/changes/minor/20190910MartinKronbichler new file mode 100644 index 0000000000..458e849d0a --- /dev/null +++ b/doc/news/changes/minor/20190910MartinKronbichler @@ -0,0 +1,9 @@ +New: There is a new variant of MatrixFree::cell_loop() which takes two +std::function objects with ranges on the locally owned degrees of freedom, one +with work to be scheduled before the cell operation first touches some +unknowns, and one after the cell operation last touches them. The goal of +these functions is to bring vector operations close to the time when the +vector entries are accessed by the cell operation which increases the cache +hit rate of modern processors (temporal locality). +
+(Martin Kronbichler, 2019/09/10)