Thanks!
Unfortunately apple doesn't support nvidia anymore and this is the only card that I have, and have invested a lot of money in it.
This means I do all my work in windows now since Resolume/Ableton/Max do not run on linux.
Resolume eating all GPU memory, Spout, Directx9
Re: Resolume eating all GPU memory, Spout, Directx9
We're using glReadPixels into a pbo.
I dont know what "failing to download textures at max bandwidth capacity" means. Are you saying you're getting OpenGL errors somehow?
If it's just performance problems you're having then you probably need to do some pipelining so that you're not transferring the pixels synchronously. We're using fences to know when the download is done and we just have a queue of in-flight downloads. We give the queue a maximum size to prevent using too much memory. You also need to do some pipelining on the output, make frame compression run in parallel so that you dont stall the renderthread.
I dont know what "failing to download textures at max bandwidth capacity" means. Are you saying you're getting OpenGL errors somehow?
If it's just performance problems you're having then you probably need to do some pipelining so that you're not transferring the pixels synchronously. We're using fences to know when the download is done and we just have a queue of in-flight downloads. We give the queue a maximum size to prevent using too much memory. You also need to do some pipelining on the output, make frame compression run in parallel so that you dont stall the renderthread.
Re: Resolume eating all GPU memory, Spout, Directx9
Thanks for your answer.
My issue is that with PBO & glReadPixels gives me a maximum speed of 600 MB/s from GPU to CPU memory.
At 4K rgba 60hz I need to be able to achieve 1800 MB/s. And then I can do pipelining.
I guess this also explains why recording with Resolume record feature doesn't produce a usable video.
I'm guessing it's working for most people because people usually have an internal GPU (ie. don't rely on a thunderbolt link) and use lower resolutions.
I somewhat found a solution with my specific hardware by using optimized cuda functions which performs way faster.
But now I can't seem to write on my high speed SSD at more than 100 MB/s..
My issue is that with PBO & glReadPixels gives me a maximum speed of 600 MB/s from GPU to CPU memory.
At 4K rgba 60hz I need to be able to achieve 1800 MB/s. And then I can do pipelining.
I guess this also explains why recording with Resolume record feature doesn't produce a usable video.
I'm guessing it's working for most people because people usually have an internal GPU (ie. don't rely on a thunderbolt link) and use lower resolutions.
I somewhat found a solution with my specific hardware by using optimized cuda functions which performs way faster.
But now I can't seem to write on my high speed SSD at more than 100 MB/s..
Re: Resolume eating all GPU memory, Spout, Directx9
With version 7, I can record 7680x2160 composition for hours on my desktop, while Resolume still runs at 60FPS.sefreso wrote: Mon Nov 18, 2019 14:46 I guess this also explains why recording with Resolume record feature doesn't produce a usable video.
So, "usable" is a very relative term

EGPU eh?I'm guessing it's working for most people because people usually have an internal GPU (ie. don't rely on a thunderbolt link) and use lower resolutions.
Didn't mention that in the other recording thread.
Thunderbolt 2 or 3?
Software developer, Sound Engineer,
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Re: Resolume eating all GPU memory, Spout, Directx9
Is the recording at 60 fps also? Or is it at 30?
I haven't tried resolume 7 yet.
Its thunderbolt 3.
I haven't tried resolume 7 yet.
Its thunderbolt 3.
Re: Resolume eating all GPU memory, Spout, Directx9
It's 30, but twice the width of what you want to do, so the bandwidth is the same.
I think I saw somewhere, but why do you need 60FPS recording again?
I think I saw somewhere, but why do you need 60FPS recording again?
Software developer, Sound Engineer,
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Control Your show with ”Enter” - multiple Resolume servers at once - SMPTE/MTC column launch
try for free: http://programs.palffyzoltan.hu
Re: Resolume eating all GPU memory, Spout, Directx9
OK thanks for this info, I should try resolume 7 to benchmark, but I need the alpha layer so it can't be a suitable workaround.
I need 60 fps and alpha because I want to produce VJ loops from spout sources I developed. I want to use resolume for its effects and nice interface.
I need 60 fps and alpha because I want to produce VJ loops from spout sources I developed. I want to use resolume for its effects and nice interface.
Re: Resolume eating all GPU memory, Spout, Directx9
You could try recording at 30fps and doubling the framerate of the recording in post.sefreso wrote: Wed Nov 20, 2019 09:46 I need 60 fps and alpha because I want to produce VJ loops from spout sources I developed. I want to use resolume for its effects and nice interface.
Re: Resolume eating all GPU memory, Spout, Directx9
I've had really good luck using TouchDesigner for recording things via Spout and NDI and preserving the Alpha Layer.
Re: Resolume eating all GPU memory, Spout, Directx9
Thanks for the info I will look into TD. Cheers