diff options
author | Timothy Pearson <tpearson@raptorengineering.com> | 2024-08-24 13:04:45 -0500 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2024-08-24 13:51:05 -0500 |
commit | 2ef6dba8728db2437def9a4fc1d3e20e0aa44c31 (patch) | |
tree | 5211805789c78639d6b96a89bd0a4a96078d0fd9 /lib/ffts/include/ffts.h | |
parent | c40a208abbc778da4271485eba06a89d05c69b5e (diff) | |
download | ulab-2ef6dba8728db2437def9a4fc1d3e20e0aa44c31.tar.gz ulab-2ef6dba8728db2437def9a4fc1d3e20e0aa44c31.zip |
Revup FFTS to latest upstream version
Taken from https://github.com/linkotec/ffts
Fixes ppc64el support and a handful of other bugs
Diffstat (limited to 'lib/ffts/include/ffts.h')
-rw-r--r-- | lib/ffts/include/ffts.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/ffts/include/ffts.h b/lib/ffts/include/ffts.h index cc85a88..b13316f 100644 --- a/lib/ffts/include/ffts.h +++ b/lib/ffts/include/ffts.h @@ -3,6 +3,7 @@ This file is part of FFTS. Copyright (c) 2012, Anthony M. Blake + Copyright (c) 2018, Jukka Ojanen <jukka.ojanen@kolumbus.fi> All rights reserved. Redistribution and use in source and binary forms, with or without @@ -76,6 +77,9 @@ FFTS_API ffts_plan_t* ffts_init_1d(size_t N, int sign); FFTS_API ffts_plan_t* +ffts_init_1d_64f(size_t N, int sign); + +FFTS_API ffts_plan_t* ffts_init_2d(size_t N1, size_t N2, int sign); FFTS_API ffts_plan_t* |