From ab556f87890e483d1a0814096cad491de270b6ad Mon Sep 17 00:00:00 2001 From: Jukka Ojanen Date: Mon, 28 Mar 2016 23:45:33 +0300 Subject: Rename neon_transpose to neon_transpose4, 4x4 tiled matrix transpose. Rename neon_transpose_to_buf to neon_transpose8, 8x8 tiled matrix transpose. --- src/ffts_nd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ffts_nd.c') 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 -- cgit v1.1