source: XIOS3/branches/xios-3.0-beta/src/config/axis_attribute.conf @ 2521

Last change on this file since 2521 was 2478, checked in by jderouillat, 16 months ago

Add tunable output chunking. The user can specify a chunking_blocksize_target (in Mo, default = 20) as a field attribute, and the chunking dimensions in domain/axis definition through the attributes : (chunking_weight_i, chunking_weight_j)/chunking_weight. Weights are relativized for more or less chunking along the directions concerned

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 1.2 KB
Line 
1DECLARE_ATTRIBUTE(StdString, name)
2DECLARE_ATTRIBUTE(StdString, standard_name)
3DECLARE_ATTRIBUTE(StdString, long_name)
4
5DECLARE_ATTRIBUTE(StdString, comment)
6
7DECLARE_ATTRIBUTE(StdString, unit)
8DECLARE_ATTRIBUTE(StdString, formula)
9DECLARE_ATTRIBUTE(StdString, formula_term)
10DECLARE_ATTRIBUTE(StdString, formula_bounds)
11DECLARE_ATTRIBUTE(StdString, formula_term_bounds)
12DECLARE_ATTRIBUTE(StdString, bounds_name)
13
14DECLARE_ATTRIBUTE(int,       n_glo)
15DECLARE_ENUM2(positive, up, down)
16DECLARE_ENUM4(axis_type, X, Y, Z, T)
17DECLARE_ATTRIBUTE(double,    chunking_weight)
18
19DECLARE_ATTRIBUTE(StdString, dim_name)
20
21/* GLOBAL */
22DECLARE_ATTRIBUTE(int,       n_distributed_partition)
23
24/* LOCAL */
25DECLARE_ARRAY(double , 1   , value, false)
26DECLARE_ATTRIBUTE(StdString, axis_ref, false)
27
28DECLARE_ARRAY(int    ,1    , index, false)
29
30/* LOCAL */
31DECLARE_ATTRIBUTE(int,       data_n, false)
32DECLARE_ATTRIBUTE(int,       data_begin, false)
33DECLARE_ARRAY(int    ,   1 , data_index, false)
34
35/*LOCAL */
36DECLARE_ATTRIBUTE(int,       begin, false)
37DECLARE_ATTRIBUTE(int,       n, false)
38
39/* LOCAL */
40DECLARE_ARRAY(bool, 1 , mask, false)
41DECLARE_ARRAY(double, 2 , bounds, false)
42DECLARE_ATTRIBUTE(int,       prec)
43DECLARE_ARRAY(StdString    ,1    , label, false)
Note: See TracBrowser for help on using the repository browser.