From c602cee1b51e8c532e4817d41d973deea8ab257a Mon Sep 17 00:00:00 2001 From: Jukka Ojanen Date: Wed, 29 Oct 2014 16:13:33 +0200 Subject: Cleaning and reorganizing --- src/ffts_nd.h | 36 ++++++++++-------------------------- 1 file changed, 10 insertions(+), 26 deletions(-) (limited to 'src/ffts_nd.h') diff --git a/src/ffts_nd.h b/src/ffts_nd.h index a9af3e2..a960cad 100644 --- a/src/ffts_nd.h +++ b/src/ffts_nd.h @@ -1,10 +1,10 @@ /* - + This file is part of FFTS -- The Fastest Fourier Transform in the South - + Copyright (c) 2012, Anthony M. Blake - Copyright (c) 2012, The University of Waikato - + Copyright (c) 2012, The University of Waikato + All rights reserved. Redistribution and use in source and binary forms, with or without @@ -31,29 +31,13 @@ */ -#ifndef __FFTS_ND_H__ -#define __FFTS_ND_H__ - -#include -#include -#include +#ifndef FFTS_ND_H +#define FFTS_ND_H #include "ffts.h" +#include -#ifdef HAVE_NEON - #include -#endif -#ifdef HAVE_SSE - #include -#endif - -void ffts_free_nd(ffts_plan_t *p); -void ffts_transpose(uint64_t *in, uint64_t *out, int w, int h, uint64_t *buf); - -void ffts_execute_nd(ffts_plan_t *p, const void * in, void * out); -ffts_plan_t *ffts_init_nd(int rank, size_t *Ns, int sign); -ffts_plan_t *ffts_init_2d(size_t N1, size_t N2, int sign); - -#endif +ffts_plan_t *ffts_init_nd(int rank, size_t *Ns, int sign); +ffts_plan_t *ffts_init_2d(size_t N1, size_t N2, int sign); -// vim: set autoindent noexpandtab tabstop=3 shiftwidth=3: +#endif /* FFTS_ND_H */ -- cgit v1.1