Problem with gpu volume rendering

Hello, I’m working on big (~7GB) file and my GPU won’t render a 3D model. I’ve been waiting ages, but it seems it’s not even processing it. CPU render works fine, but it slows down my unit significantly. I’m working with AMD Radeon RX 7600. I tried every solution I’ve found here, centering the view doesn’t help either. Is there a way to fix this?

This comes up often with AMD gpus. For volume rendering to work, you need there are two requirements:

  1. Your volume size should fit into your GPUs texture memory. and that specific card seems to have 8GB of VRAM, so it should be fine.
  2. The largest dimension of your volume should be equal or less than the 3D Max Texture Size specified by your graphics card and its driver. Unfortunately, for AMD GPUs, this is rather low at 2K (2048). So if one of your dimensions is larger than 2048 voxels, your card will not display the 3D volume.
1 Like

Try to cast your volume to ‘short’, it often helps to render big volumes.

1 Like

It’s 8196 for the Rx 7600 on Windows. There are nvidia cards with low values for this parameter also.

1 Like

Thank you, this seems to be a solution for me :slight_smile: