From 76ab83f56f2fe4a47260851951cec253551387d5 Mon Sep 17 00:00:00 2001 From: pradeep Date: Thu, 15 Sep 2016 14:22:45 +0530 Subject: [PATCH] BUGFIX: Add missing unified call for set_fft_plan_cache_size --- src/api/unified/signal.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/unified/signal.cpp b/src/api/unified/signal.cpp index d4cc372d4a..22dff492bf 100644 --- a/src/api/unified/signal.cpp +++ b/src/api/unified/signal.cpp @@ -23,6 +23,11 @@ af_err af_approx2(af_array *out, const af_array in, const af_array pos0, const a return CALL(out, in, pos0, pos1, method, offGrid); } +af_err af_set_fft_plan_cache_size(size_t cache_size) +{ + return CALL(cache_size); +} + #define FFT_HAPI_DEF(af_func)\ af_err af_func(af_array in, const double norm_factor)\ {\