Chris@19: /* Chris@19: * Copyright (c) 2003, 2007-14 Matteo Frigo Chris@19: * Copyright (c) 2003, 2007-14 Massachusetts Institute of Technology Chris@19: * Chris@19: * This program is free software; you can redistribute it and/or modify Chris@19: * it under the terms of the GNU General Public License as published by Chris@19: * the Free Software Foundation; either version 2 of the License, or Chris@19: * (at your option) any later version. Chris@19: * Chris@19: * This program is distributed in the hope that it will be useful, Chris@19: * but WITHOUT ANY WARRANTY; without even the implied warranty of Chris@19: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Chris@19: * GNU General Public License for more details. Chris@19: * Chris@19: * You should have received a copy of the GNU General Public License Chris@19: * along with this program; if not, write to the Free Software Chris@19: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Chris@19: * Chris@19: */ Chris@19: Chris@19: Chris@19: #include "ifftw.h" Chris@19: Chris@19: INT X(tensor_max_index)(const tensor *sz) Chris@19: { Chris@19: int i; Chris@19: INT ni = 0, no = 0; Chris@19: Chris@19: A(FINITE_RNK(sz->rnk)); Chris@19: for (i = 0; i < sz->rnk; ++i) { Chris@19: const iodim *p = sz->dims + i; Chris@19: ni += (p->n - 1) * X(iabs)(p->is); Chris@19: no += (p->n - 1) * X(iabs)(p->os); Chris@19: } Chris@19: return X(imax)(ni, no); Chris@19: } Chris@19: Chris@19: #define tensor_min_xstride(sz, xs) { \ Chris@19: A(FINITE_RNK(sz->rnk)); \ Chris@19: if (sz->rnk == 0) return 0; \ Chris@19: else { \ Chris@19: int i; \ Chris@19: INT s = X(iabs)(sz->dims[0].xs); \ Chris@19: for (i = 1; i < sz->rnk; ++i) \ Chris@19: s = X(imin)(s, X(iabs)(sz->dims[i].xs)); \ Chris@19: return s; \ Chris@19: } \ Chris@19: } Chris@19: Chris@19: INT X(tensor_min_istride)(const tensor *sz) tensor_min_xstride(sz, is) Chris@19: INT X(tensor_min_ostride)(const tensor *sz) tensor_min_xstride(sz, os) Chris@19: Chris@19: INT X(tensor_min_stride)(const tensor *sz) Chris@19: { Chris@19: return X(imin)(X(tensor_min_istride)(sz), X(tensor_min_ostride)(sz)); Chris@19: } Chris@19: Chris@19: int X(tensor_inplace_strides)(const tensor *sz) Chris@19: { Chris@19: int i; Chris@19: A(FINITE_RNK(sz->rnk)); Chris@19: for (i = 0; i < sz->rnk; ++i) { Chris@19: const iodim *p = sz->dims + i; Chris@19: if (p->is != p->os) Chris@19: return 0; Chris@19: } Chris@19: return 1; Chris@19: } Chris@19: Chris@19: int X(tensor_inplace_strides2)(const tensor *a, const tensor *b) Chris@19: { Chris@19: return X(tensor_inplace_strides(a)) && X(tensor_inplace_strides(b)); Chris@19: } Chris@19: Chris@19: /* return true (1) iff *any* strides of sz decrease when we Chris@19: tensor_inplace_copy(sz, k). */ Chris@19: static int tensor_strides_decrease(const tensor *sz, inplace_kind k) Chris@19: { Chris@19: if (FINITE_RNK(sz->rnk)) { Chris@19: int i; Chris@19: for (i = 0; i < sz->rnk; ++i) Chris@19: if ((sz->dims[i].os - sz->dims[i].is) Chris@19: * (k == INPLACE_OS ? (INT)1 : (INT)-1) < 0) Chris@19: return 1; Chris@19: } Chris@19: return 0; Chris@19: } Chris@19: Chris@19: /* Return true (1) iff *any* strides of sz decrease when we Chris@19: tensor_inplace_copy(k) *or* if *all* strides of sz are unchanged Chris@19: but *any* strides of vecsz decrease. This is used in indirect.c Chris@19: to determine whether to use INPLACE_IS or INPLACE_OS. Chris@19: Chris@19: Note: X(tensor_strides_decrease)(sz, vecsz, INPLACE_IS) Chris@19: || X(tensor_strides_decrease)(sz, vecsz, INPLACE_OS) Chris@19: || X(tensor_inplace_strides2)(p->sz, p->vecsz) Chris@19: must always be true. */ Chris@19: int X(tensor_strides_decrease)(const tensor *sz, const tensor *vecsz, Chris@19: inplace_kind k) Chris@19: { Chris@19: return(tensor_strides_decrease(sz, k) Chris@19: || (X(tensor_inplace_strides)(sz) Chris@19: && tensor_strides_decrease(vecsz, k))); Chris@19: }