summaryrefslogtreecommitdiffstats
path: root/tools/misc/vds/UC_1.h
blob: 29df72bf496900826459852ad76ccb0c6e676f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#ifndef UC_1_H
#define UC_1_H

#include "hdf5.h"

#include "UC_common.h"

/*
 * Definitions for VDS use case 1
 *
 * Datasets have a single unlimited dimension and two fixed dimensions. They
 * are mapped along a single dimension in the VDS with no gaps between them.
 */

/* virtual dataset <---> source dataset mapping and sizes

   *****************  --+
   *       A       *    K
   *****************  --+
   *               *    |
   *       B       *    N
   *               *    |
   *****************  --+
   *       C       *
   *****************
   *               *
   *       D       *
   *               *
   *****************
   *       E       *
   *****************
   *               *
   *       F       *
   *               *
   *****************

   |               |
   +-------M-------+
 

        dim[0]
       /
      /
     /
    -----> dim[2]
    |
    |
    |
   dim[1]

  */


#define UC_1_N_SOURCES      6

/* Dataset dimensions */
#define UC_1_SM_HEIGHT      2   /* K */
#define UC_1_LG_HEIGHT      4   /* N */
#define UC_1_SM_LG_HEIGHT   6   /* SM_HEIGHT + LG_HEIGHT */
#define UC_1_FULL_HEIGHT    18  /* (3 * K) + (3 * N) */
#define UC_1_HALF_HEIGHT    9
#define UC_1_WIDTH          8   /* M */
#define UC_1_HALF_WIDTH     4

#define UC_1_N_MAX_PLANES   H5S_UNLIMITED   /* max number of planes         */
#define UC_1_N_TEST_PLANES  5               /* number of planes we write    */

/* Dataset datatypes */
#define UC_1_SOURCE_DATATYPE    H5T_STD_I32LE
#define UC_1_VDS_DATATYPE       H5T_STD_I32LE

/* Starting size of datasets, both source and VDS */
static hsize_t UC_1_DIMS[UC_1_N_SOURCES][RANK] = {
    {0, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {0, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {0, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {0, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {0, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {0, UC_1_LG_HEIGHT, UC_1_WIDTH}
};
static hsize_t UC_1_VDS_DIMS[RANK] = {0, UC_1_FULL_HEIGHT, UC_1_WIDTH};

/* Maximum size of datasets, both source and VDS */
static hsize_t UC_1_MAX_DIMS[UC_1_N_SOURCES][RANK] = {
    {UC_1_N_MAX_PLANES, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {UC_1_N_MAX_PLANES, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {UC_1_N_MAX_PLANES, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {UC_1_N_MAX_PLANES, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {UC_1_N_MAX_PLANES, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {UC_1_N_MAX_PLANES, UC_1_LG_HEIGHT, UC_1_WIDTH}
};
static hsize_t UC_1_VDS_MAX_DIMS[RANK] = {UC_1_N_MAX_PLANES, UC_1_FULL_HEIGHT, UC_1_WIDTH};

/* Planes */
static hsize_t UC_1_PLANES[UC_1_N_SOURCES][RANK] = {
    {1, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {1, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {1, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {1, UC_1_LG_HEIGHT, UC_1_WIDTH},
    {1, UC_1_SM_HEIGHT, UC_1_WIDTH},
    {1, UC_1_LG_HEIGHT, UC_1_WIDTH}
};
static hsize_t UC_1_VDS_PLANE[RANK] = {1, UC_1_FULL_HEIGHT, UC_1_WIDTH};

/* File names for source datasets */
static char UC_1_FILE_NAMES[UC_1_N_SOURCES][NAME_LEN] = {
    {"1_a.h5"},
    {"1_b.h5"},
    {"1_c.h5"},
    {"1_d.h5"},
    {"1_e.h5"},
    {"1_f.h5"}
};

/* VDS file name */
static char UC_1_VDS_FILE_NAME[NAME_LEN] = "1_vds.h5";
    
/* Dataset names */
static char UC_1_SOURCE_DSET_NAME[NAME_LEN] = "source_dset";
static char UC_1_SOURCE_DSET_PATH[NAME_LEN] = "/source_dset";
static char UC_1_VDS_DSET_NAME[NAME_LEN]    = "vds_dset";

/* Fill values */
static hsize_t UC_1_FILL_VALUES[UC_1_N_SOURCES] = {
    -1,
    -2,
    -3,
    -4,
    -5,
    -6
};
static int UC_1_VDS_FILL_VALUE = -9;

#endif /* UC_1_H */