Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/api/unified/signal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)\
{\
Expand Down