From 4c9a37db35e8b0c7fbf56f7777e25f482cb88173 Mon Sep 17 00:00:00 2001 From: kanschat Date: Mon, 18 Oct 2010 16:01:03 +0000 Subject: [PATCH] document memory requirements git-svn-id: https://svn.dealii.org/trunk@22368 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/work_stream.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/deal.II/base/include/base/work_stream.h b/deal.II/base/include/base/work_stream.h index 7771563b3a..3258c800ec 100644 --- a/deal.II/base/include/base/work_stream.h +++ b/deal.II/base/include/base/work_stream.h @@ -487,6 +487,16 @@ namespace WorkStream * stream that will be worked on by the * worker and copier functions one after * the other on the same thread. + * + * @note If your data objects are large, + * or their constructors are expensive, + * it is helpful to keep in mind + * that queue_length + * copies of the ScratchData + * object and + * queue_length*chunk_size + * copies of the CopyData + * object are generated. */ template queue_length + * copies of the ScratchData + * object and + * queue_length*chunk_size + * copies of the CopyData + * object are generated. */ template