/usr/include/blitz/array/stencils.h is in libblitz0-dev 1:0.10-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | // -*- C++ -*-
/***************************************************************************
* blitz/array/stencils.h Stencils for arrays
*
* $Id$
*
* Copyright (C) 1997-2011 Todd Veldhuizen <tveldhui@acm.org>
*
* This file is a part of Blitz.
*
* Blitz is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Blitz is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Blitz. If not, see <http://www.gnu.org/licenses/>.
*
* Suggestions: blitz-devel@lists.sourceforge.net
* Bugs: blitz-support@lists.sourceforge.net
*
* For more information, please see the Blitz++ Home Page:
* https://sourceforge.net/projects/blitz/
*
****************************************************************************/
#ifndef BZ_ARRAYSTENCILS_H
#define BZ_ARRAYSTENCILS_H
#ifndef BZ_ARRAY_H
#error <blitz/array/stencils.h> must be included after <blitz/array.h>
#endif
#include <blitz/array/stencilops.h>
// NEEDS_WORK: currently stencilExtent returns int(1). What if the
// stencil contains calls to math functions, or divisions, etc.?
// Should at least return a number of the appropriate type. Probably
// return a sequence of quasi-random floating point numbers.
/*
* These macros make it easier for users to declare stencil objects.
* The syntax is:
*
* BZ_DECLARE_STENCILN(stencilname, Array1, Array2, ..., ArrayN)
* // stencil operations go here
* BZ_END_STENCIL
*/
#define BZ_DECLARE_STENCIL2(name,A,B) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6, \
typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3, T4, T5, T6, T7, T8, T9, T10, T11) \
{
#define BZ_END_STENCIL_WITH_SHAPE(MINS,MAXS) } \
template<int N> \
void getExtent(BZ_BLITZ_SCOPE(TinyVector)<int,N>& minb, \
BZ_BLITZ_SCOPE(TinyVector)<int,N>& maxb) const \
{ \
minb = MINS; \
maxb = MAXS; \
} \
static const bool hasExtent = true; \
};
#define BZ_END_STENCIL } static const bool hasExtent = false; };
#define BZ_STENCIL_END BZ_END_STENCIL
#define BZ_DECLARE_STENCIL3(name,A,B,C) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6, \
typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4, T5, T6, T7, T8, T9, \
T10, T11) \
{
#define BZ_DECLARE_STENCIL4(name,A,B,C,D) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6, \
typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5, T6, T7, \
T8, T9, T10, T11) \
{
#define BZ_DECLARE_STENCIL5(name,A,B,C,D,E) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6, \
typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6, T7, T8, \
T9, T10, T11) \
{
#define BZ_DECLARE_STENCIL6(name,A,B,C,D,E,F) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6, \
typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, \
T7, T8, T9, T10, T11) \
{
#define BZ_DECLARE_STENCIL7(name,A,B,C,D,E,F,G) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4, \
typename T5,typename T6,typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, T7& G, \
T8, T9, T10, T11) \
{
#define BZ_DECLARE_STENCIL8(name,A,B,C,D,E,F,G,H) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4, \
typename T5,typename T6,typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, T7& G, \
T8& H, T9, T10, T11) \
{
#define BZ_DECLARE_STENCIL9(name,A,B,C,D,E,F,G,H,I) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4, \
typename T5,typename T6,typename T7,typename T8,typename T9,typename T10, \
typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, T7& G, \
T8& H, T9& I, T10, T11) \
{
#define BZ_DECLARE_STENCIL10(name,A,B,C,D,E,F,G,H,I,J) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4, \
typename T5,typename T6,typename T7,typename T8,typename T9,typename T10,typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, T7& G, \
T8& H, T9& I, T10& J, T11) \
{
#define BZ_DECLARE_STENCIL11(name,A,B,C,D,E,F,G,H,I,J,K) \
struct name { \
template<typename T1,typename T2,typename T3,typename T4, \
typename T5,typename T6,typename T7,typename T8,typename T9,typename T10, \
typename T11> \
static inline void apply(T1& A, T2& B, T3& C, T4& D, T5& E, T6& F, T7& G, \
T8& H, T9& I, T10& J, T11& K) \
{
BZ_NAMESPACE(blitz)
/*
* dummyArray is used to provide "dummy" padding parameters to applyStencil(),
* so that any number of arrays (up to 11) can be given as arguments.
*/
template<typename T> class dummy;
struct dummyArray {
typedef dummy<double> T_iterator;
const dummyArray& shape() const { return *this; }
};
_bz_global dummyArray _dummyArray;
/*
* This dummy class pretends to be a scalar of type T, or an array iterator
* of type T, but really does nothing.
*/
template<typename T>
class dummy {
public:
dummy() { }
dummy(T value)
: value_(value)
{ }
dummy(const dummyArray&)
{ }
operator T() const { return value_; };
template<typename T2>
void operator=(T2) { }
_bz_typename multicomponent_traits<T>::T_element operator[](int i) const
{ return value_[i]; }
void loadStride(int) { }
void moveTo(int) { }
void moveTo(int,int) { }
void moveTo(int,int,int) { }
void moveTo(int,int,int,int) { }
void advance() { }
T shift(int,int) { return T(); }
private:
T value_;
};
/*
* The stencilExtent object is passed to stencil objects to find out
* the spatial extent of the stencil. It pretends it's an array,
* but really it's just recording the locations of the array reads
* via operator().
*/
template<int N_rank,typename P_numtype>
class stencilExtent : public ETBase<stencilExtent<N_rank, P_numtype> > {
public:
typedef P_numtype T_numtype;
stencilExtent()
{
min_ = 0;
max_ = 0;
}
dummy<T_numtype> operator()(int i) const
{
update(0, i);
return dummy<T_numtype>(1);
}
dummy<T_numtype> operator()(int i, int j) const
{
update(0, i);
update(1, j);
return dummy<T_numtype>(1);
}
dummy<T_numtype> operator()(int i, int j, int k) const
{
update(0, i);
update(1, j);
update(2, k);
return dummy<T_numtype>(1);
}
dummy<T_numtype> shift(int offset, int dim) const
{
update(dim, offset);
return dummy<T_numtype>(1);
}
dummy<T_numtype> shift(int offset1, int dim1, int offset2, int dim2) const
{
update(dim1, offset1);
update(dim2, offset2);
return dummy<T_numtype>(1);
}
dummy<_bz_typename multicomponent_traits<T_numtype>::T_element>
operator[](int) const
{
return dummy<_bz_typename multicomponent_traits<T_numtype>::T_element>
(1);
}
void update(int rank, int offset) const
{
if (offset < min_[rank])
min_[rank] = offset;
if (offset > max_[rank])
max_[rank] = offset;
}
template<typename T_numtype2>
void combine(const stencilExtent<N_rank,T_numtype2>& x) const
{
for (int i=0; i < N_rank; ++i)
{
min_[i] = (extrema::min)(min_[i], (x.min)(i));
max_[i] = (extrema::max)(max_[i], (x.max)(i));
}
}
template<typename T_numtype2>
void combine(const dummy<T_numtype2>&) const
{ }
int (min)(int i) const
{ return min_[i]; }
int (max)(int i) const
{ return max_[i]; }
const TinyVector<int,N_rank>& (min)() const
{ return min_; }
const TinyVector<int,N_rank>& (max)() const
{ return max_; }
template<typename T>
void operator=(T)
{ }
// NEEDS_WORK: other operators
template<typename T> void operator+=(T) { }
template<typename T> void operator-=(T) { }
template<typename T> void operator*=(T) { }
template<typename T> void operator/=(T) { }
operator T_numtype()
{ return T_numtype(1); }
T_numtype operator*() const
{ return T_numtype(1); }
private:
mutable TinyVector<int,N_rank> min_, max_;
};
/*
* stencilExtent_traits gives a stencilExtent<N,T> object for arrays,
* and a dummy object for dummy arrays.
*/
template<typename T>
struct stencilExtent_traits {
typedef dummy<double> T_stencilExtent;
};
template<typename T_numtype, int N_rank>
struct stencilExtent_traits<Array<T_numtype,N_rank> > {
typedef stencilExtent<N_rank,T_numtype> T_stencilExtent;
};
/*
* Specialization of areShapesConformable(), originally
* defined in <blitz/shapecheck.h>
*/
template<typename T_shape1>
inline bool areShapesConformable(const T_shape1&, const dummyArray&) {
return true;
}
BZ_NAMESPACE_END
#include <blitz/array/stencils.cc>
#endif // BZ_ARRAYSTENCILS_H
|