summaryrefslogtreecommitdiffstats
path: root/src/ffts_nd.c
diff options
context:
space:
mode:
authorJukka Ojanen <jukka.ojanen@linkotec.net>2016-03-28 23:45:33 +0300
committerJukka Ojanen <jukka.ojanen@linkotec.net>2016-03-28 23:45:33 +0300
commitab556f87890e483d1a0814096cad491de270b6ad (patch)
treeabc04f8e60cbbf3fa64938d9648082d137410fa1 /src/ffts_nd.c
parent7f74c87546f97b8d5864e1f20da54d226de9030b (diff)
downloadffts-ab556f87890e483d1a0814096cad491de270b6ad.zip
ffts-ab556f87890e483d1a0814096cad491de270b6ad.tar.gz
Rename neon_transpose to neon_transpose4, 4x4 tiled matrix transpose.
Rename neon_transpose_to_buf to neon_transpose8, 8x8 tiled matrix transpose.
Diffstat (limited to 'src/ffts_nd.c')
-rw-r--r--src/ffts_nd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ffts_nd.c b/src/ffts_nd.c
index c964d7f..ebce101 100644
--- a/src/ffts_nd.c
+++ b/src/ffts_nd.c
@@ -92,13 +92,13 @@ ffts_transpose(uint64_t *in, uint64_t *out, int w, int h)
{
#ifdef HAVE_NEON
#if 0
- neon_transpose(in, out, w, h);
+ neon_transpose4(in, out, w, h);
#else
size_t i, j;
for (j = 0; j < h; j += 8) {
for (i = 0; i < w; i += 8) {
- neon_transpose_to_buf(in + j*w + i, out + i*h + j, w);
+ neon_transpose8(in + j*w + i, out + i*h + j, w, h);
}
}
#endif
OpenPOWER on IntegriCloud