-
Hello, I am running into an issue with Dr.Jit which I don't fully understand. I am following the forward inverse rendering tutorial, using the cbox scene in The issue I am experiencing: when I set
The image renders and outputs to a png, so I think the issue is with the gradient step My system information
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
A small edit: I get the same issue with |
Beta Was this translation helpful? Give feedback.
-
I would recommend using the You can do this by changing the rendering cell as follows: integrator = mi.load_dict({ 'type': 'prb' })
image = mi.render(scene, params, integrator=integrator, spp=4096) This should do the trick. Take a look here if you want a better understanding of the memory consumption with this method. |
Beta Was this translation helpful? Give feedback.
I would recommend using the
prb
integrator.You can do this by changing the rendering cell as follows:
This should do the trick. Take a look here if you want a better understanding of the memory consumption with this method.