我想在.NET Core 2.1 WEB API中使用FFTW.NET。当我执行下面的代码时,我在System.InvalidOperationException: 'IsAvailable returns false.'
获得DFT.FFT(pinIn, pinOut);
Complex[] input = new Complex[1024];
Complex[] output = new Complex[input.Length];
//Initialize input
using (var pinIn = new PinnedArray<Complex>(input))
using (var pinOut = new PinnedArray<Complex>(output))
{
DFT.FFT(pinIn, pinOut);
}
下面是堆栈跟踪。
at FFTW.NET.FftwPlan`2..ctor(IPinnedArray`1 buffer1, IPinnedArray`1 buffer2, Int32 rank, Int32[] n, Boolean verifyRankAndSize, DftDirection direction, PlannerFlags plannerFlags, Int32 nThreads)
at FFTW.NET.FftwPlanC2C.Create(IPinnedArray`1 input, IPinnedArray`1 output, DftDirection direction, PlannerFlags plannerFlags, Int32 nThreads)
at FFTW.NET.DFT.Transform(IPinnedArray`1 input, IPinnedArray`1 output, DftDirection direction, PlannerFlags plannerFlags, Int32 nThreads)
at FFTW.NET.DFT.FFT(IPinnedArray`1 input, IPinnedArray`1 output, PlannerFlags plannerFlags, Int32 nThreads)
at FFTW_WEB_API.Controllers.ValuesController.Get() in D:\FFTW_Test\FFTW_WEB_API\Controllers\ValuesController.cs:line 1059
at lambda_method(Closure , Object , Object[] )
at Microsoft.Extensions.Internal.ObjectMethodExecutor.Execute(Object target, Object[] parameters)
at Microsoft.AspNetCore.Mvc.Internal.ActionMethodExecutor.SyncObjectResultExecutor.Execute(IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)
at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.InvokeActionMethodAsync()
但是同一段代码在.NET Core 2.1控制台应用程序中运行良好。
如果我做错了,请建议。
内部调用IsAvailable
来测试互操作层是否快乐 - found here。
如果试图加载Dll导致false
(通过DllNotFoundException
和GetVersionAndInitialize
),它看起来会返回_version
。
因此,本机DLL不在正确的位置加载。如果不清楚DLL正在探测哪些位置,您可能需要使用Process Monitor来查找加载DLL的失败探测尝试。