/*************************************************************************** * blitz/array/map.h Declaration of the ArrayIndexMapping class * * $Id: map.h,v 1.1.1.1 1999-04-09 17:59:03 ansari Exp $ * * Copyright (C) 1997,1998 Todd Veldhuizen * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * Suggestions: blitz-suggest@cybervision.com * Bugs: blitz-bugs@cybervision.com * * For more information, please see the Blitz++ Home Page: * http://seurat.uwaterloo.ca/blitz/ * *************************************************************************** * $Log: not supported by cvs2svn $ * Revision 1.2 1998/03/14 00:04:47 tveldhui * 0.2-alpha-05 * * Revision 1.1 1997/07/16 14:51:20 tveldhui * Update: Alpha release 0.2 (Arrays) * */ /* * ArrayIndexMapping is used to implement tensor array notation. For * example: * * Array A, B; * firstIndex i; * secondIndex j; * thirdIndex k; * Array C = A(i,j) * B(j,k); * * For expression templates purposes, something like B(j,k) is represented * by an instance of class ArrayIndexMapping. This class maps an array onto * the destination array coordinate system, e.g. B(j,k) -> C(i,j,k) */ #ifndef BZ_ARRAYMAP_H #define BZ_ARRAYMAP_H #ifndef BZ_ARRAY_H #error must be included via #endif BZ_NAMESPACE(blitz) /* * _bz_doArrayIndexMapping is a helper class. It is specialized for * ranks 1, 2, 3, ..., 11. */ template struct _bz_doArrayIndexMapping { template static T_numtype map(const Array&, const TinyVector&, int, int, int, int, int, int, int, int, int, int, int) { // If you try to use an array index mapping on an array with // rank greater than 11, then you'll get a precondition failure // here. BZPRECONDITION(0); } }; template<> struct _bz_doArrayIndexMapping<1> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int, int, int, int, int, int, int, int, int, int) { return array(index[i0]); } }; template<> struct _bz_doArrayIndexMapping<2> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int, int, int, int, int, int, int, int, int) { return array(index[i0], index[i1]); } }; template<> struct _bz_doArrayIndexMapping<3> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int, int, int, int, int, int, int, int) { return array(index[i0], index[i1], index[i2]); } }; template<> struct _bz_doArrayIndexMapping<4> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int, int, int, int, int, int, int) { return array(index[i0], index[i1], index[i2], index[i3]); } }; template<> struct _bz_doArrayIndexMapping<5> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int, int, int, int, int, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4]); } }; template<> struct _bz_doArrayIndexMapping<6> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int, int, int, int, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5]); } }; template<> struct _bz_doArrayIndexMapping<7> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int i6, int, int, int, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5], index[i6]); } }; template<> struct _bz_doArrayIndexMapping<8> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int, int, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5], index[i6], index[i7]); } }; template<> struct _bz_doArrayIndexMapping<9> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5], index[i6], index[i7], index[i8]); } }; template<> struct _bz_doArrayIndexMapping<10> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, int) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5], index[i6], index[i7], index[i8], index[i9]); } }; template<> struct _bz_doArrayIndexMapping<11> { template static T_numtype map(const Array& array, const TinyVector& index, int i0, int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, int i9, int i10) { return array(index[i0], index[i1], index[i2], index[i3], index[i4], index[i5], index[i6], index[i7], index[i8], index[i9], index[i10]); } }; template class ArrayIndexMapping { public: typedef P_numtype T_numtype; typedef const Array& T_ctorArg1; typedef int T_ctorArg2; // dummy /* * This enum block finds the maximum of the N_map0, N_map1, ..., N_map10 * parameters and stores it in maxRank10. The rank of the expression is * then maxRank10 + 1, since the IndexPlaceholders start at 0 rather than * 1. */ enum { maxRank1 = (N_map0 > N_map1) ? N_map0 : N_map1, maxRank2 = (N_map2 > maxRank1) ? N_map2 : maxRank1, maxRank3 = (N_map3 > maxRank2) ? N_map3 : maxRank2, maxRank4 = (N_map4 > maxRank3) ? N_map4 : maxRank3, maxRank5 = (N_map5 > maxRank4) ? N_map5 : maxRank4, maxRank6 = (N_map6 > maxRank5) ? N_map6 : maxRank5, maxRank7 = (N_map7 > maxRank6) ? N_map7 : maxRank6, maxRank8 = (N_map8 > maxRank7) ? N_map8 : maxRank7, maxRank9 = (N_map9 > maxRank8) ? N_map9 : maxRank8, maxRank10 = (N_map10 > maxRank9) ? N_map10 : maxRank9 }; enum { numArrayOperands = 1, numIndexPlaceholders = 1, rank = maxRank10 + 1 }; ArrayIndexMapping(const Array& array) : array_(array) { } ArrayIndexMapping(const ArrayIndexMapping& z) : array_(z.array_) { } #ifdef BZ_ARRAY_EXPR_PASS_INDEX_BY_VALUE template T_numtype operator()(TinyVector i) { return _bz_doArrayIndexMapping::map(array_, i, N_map0, N_map1, N_map2, N_map3, N_map4, N_map5, N_map6, N_map7, N_map8, N_map9, N_map10); } #else template T_numtype operator()(const TinyVector& i) { return _bz_doArrayIndexMapping::map(array_, i, N_map0, N_map1, N_map2, N_map3, N_map4, N_map5, N_map6, N_map7, N_map8, N_map9, N_map10); } #endif int lbound(int rank) { if (N_map0 == rank) return array_.lbound(0); else if ((N_map1 == rank) && (N_rank > 1)) return array_.lbound(1); else if ((N_map2 == rank) && (N_rank > 2)) return array_.lbound(2); else if ((N_map3 == rank) && (N_rank > 3)) return array_.lbound(3); else if ((N_map4 == rank) && (N_rank > 4)) return array_.lbound(4); else if ((N_map5 == rank) && (N_rank > 5)) return array_.lbound(5); else if ((N_map6 == rank) && (N_rank > 6)) return array_.lbound(6); else if ((N_map7 == rank) && (N_rank > 7)) return array_.lbound(7); else if ((N_map8 == rank) && (N_rank > 8)) return array_.lbound(8); else if ((N_map9 == rank) && (N_rank > 9)) return array_.lbound(9); else if ((N_map10 == rank) && (N_rank > 10)) return array_.lbound(10); else return INT_MIN; // tiny(int()); } int ubound(int rank) { if (N_map0 == rank) return array_.ubound(0); else if ((N_map1 == rank) && (N_rank > 1)) return array_.ubound(1); else if ((N_map2 == rank) && (N_rank > 2)) return array_.ubound(2); else if ((N_map3 == rank) && (N_rank > 3)) return array_.ubound(3); else if ((N_map4 == rank) && (N_rank > 4)) return array_.ubound(4); else if ((N_map5 == rank) && (N_rank > 5)) return array_.ubound(5); else if ((N_map6 == rank) && (N_rank > 6)) return array_.ubound(6); else if ((N_map7 == rank) && (N_rank > 7)) return array_.ubound(7); else if ((N_map8 == rank) && (N_rank > 8)) return array_.ubound(8); else if ((N_map9 == rank) && (N_rank > 9)) return array_.ubound(9); else if ((N_map10 == rank) && (N_rank > 10)) return array_.ubound(10); else return INT_MAX; // huge(int()); } // If you have a precondition failure on this routine, it means // you are trying to use stack iteration mode on an expression // which contains an index placeholder. You must use index // iteration mode instead. int operator*() { BZPRECONDITION(0); return 0; } // See operator*() note void push(int) { BZPRECONDITION(0); } // See operator*() note void pop(int) { BZPRECONDITION(0); } // See operator*() note void advance() { BZPRECONDITION(0); } // See operator*() note void advance(int) { BZPRECONDITION(0); } // See operator*() note void loadStride(int) { BZPRECONDITION(0); } _bz_bool isUnitStride(int rank) const { BZPRECONDITION(0); return false; } void advanceUnitStride() { BZPRECONDITION(0); } _bz_bool canCollapse(int,int) const { BZPRECONDITION(0); return _bz_false; } T_numtype operator[](int) { BZPRECONDITION(0); return T_numtype(); } T_numtype fastRead(int) { BZPRECONDITION(0); return T_numtype(); } int suggestStride(int) const { BZPRECONDITION(0); return 0; } _bz_bool isStride(int,int) const { BZPRECONDITION(0); return _bz_true; } template void moveTo(const TinyVector& i) { BZPRECONDITION(0); return ; } void prettyPrint(string& str, prettyPrintFormat& format) const { // NEEDS_WORK-- do real formatting for reductions str += "map[NEEDS_WORK]"; } template _bz_bool shapeCheck(const T_shape& shape) const { // NEEDS_WORK-- do a real shape check (tricky) return _bz_true; } private: ArrayIndexMapping() { } const Array& array_; }; BZ_NAMESPACE_END #endif // BZ_ARRAYMAP_H