You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello:
I have many different configurations for configuration.size[0] and configuration.numberBatches. I saved these configurations and repeatedly load them and call initializeVkFFT. However, I noticed that calling initializeVkFFT causes memory leaks. I wrote a test code and found that when configuration.size[0] = 9200 and configuration.numberBatches = 640, running it 10,000 times results in 1253.9MB of memory not being released.
`VkFFTResult testVkFFT(VkGPU* vkGPU)
{
int cols = 9200;
int rows = 640;
The full description of the issue was provided by #197 and it should be fixed now. Sorry for the long wait, I am working fully on another project currently, but will come back to VkFFT soon.
Hello:
I have many different configurations for configuration.size[0] and configuration.numberBatches. I saved these configurations and repeatedly load them and call initializeVkFFT. However, I noticed that calling initializeVkFFT causes memory leaks. I wrote a test code and found that when configuration.size[0] = 9200 and configuration.numberBatches = 640, running it 10,000 times results in 1253.9MB of memory not being released.
`VkFFTResult testVkFFT(VkGPU* vkGPU)
{
int cols = 9200;
int rows = 640;
}
saveVkFFT(&gpu);
int size = 10000;
for(int i=0; i<size; i++) {
showProgressBar(i, size);
testVkFFT(&gpu);
}
`
The text was updated successfully, but these errors were encountered: