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
|
/*
* Copyright (c) 2007 Massachusetts Institute of Technology
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "ifftw.h"
#if HAVE_CELL
#include "simd.h"
#include "fftw-cell.h"
int X(cell_copy_applicable)(R *I, R *O, const iodim *n, const iodim *v)
{
return (1
&& X(cell_nspe)() > 0
&& UNTAINT(I) != UNTAINT(O)
&& ALIGNEDA(I)
&& ALIGNEDA(O)
&& (n->n % VL) == 0
&& ((v->n % VL) == 0 || (n->is == 2 && n->os == 2))
&& ((n->is == 2 && SIMD_STRIDE_OKA(v->is))
||
(v->is == 2 && SIMD_STRIDE_OKA(n->is)))
&& ((n->os == 2 && SIMD_STRIDE_OKA(v->os))
||
(v->os == 2 && SIMD_STRIDE_OKA(n->os)))
&& FITS_IN_INT(n->n)
&& FITS_IN_INT(n->is * sizeof(R))
&& FITS_IN_INT(n->os * sizeof(R))
&& FITS_IN_INT(v->n)
&& FITS_IN_INT(v->is * sizeof(R))
&& FITS_IN_INT(v->os * sizeof(R))
);
}
void X(cell_copy)(R *I, R *O, const iodim *n, const iodim *v)
{
int i, nspe = X(cell_nspe)();
for (i = 0; i < nspe; ++i) {
struct spu_context *ctx = X(cell_get_ctx)(i);
struct copy_context *c = &ctx->u.copy;
ctx->op = FFTW_SPE_COPY;
c->I = (uintptr_t)I;
c->O = (uintptr_t)O;
c->n = n->n;
c->v = v->n;
c->is_bytes = n->is * sizeof(R);
c->os_bytes = n->os * sizeof(R);
c->ivs_bytes = v->is * sizeof(R);
c->ovs_bytes = v->os * sizeof(R);
c->nspe = nspe;
c->my_id = i;
}
/* activate spe's */
X(cell_spe_awake_all)();
/* wait for completion */
X(cell_spe_wait_all)();
}
#endif /* HAVE_CELL */
|