Kartik Chandra

Results 54 comments of Kartik Chandra

Is there an update on this? It would be really useful for a project we're working on.

I encountered issue by calling `render` twice (on the same scene with different parameters), and then writing both images out to file via util.convert_to_bitmap. If restricted to one core via...

Something like this: ```python scene = make_scene() params = mi.traverse(scene) install_param_settings_A(params); params.update() img_A = mi.render(scene, params) install_param_settings_B(params); params.update() img_B = mi.render(scene, params) plg.imsave('A.png', mi.util.convert_to_bitmap(img_A)) plg.imsave('B.png', mi.util.convert_to_bitmap(img_B)) ```

Oh, I'm sorry, I meant to type `plt` as in Matplotlib. But that's good to know about the built-in utilities to write images to files โ€” thanks! :) I spent...

Hi all - writing to say that I have also been experiencing this issue. I can't share my reproducer (~200 lines) publicly but am happy to email with someone on...

Hi, thanks for the reminder! I think I already fixed this myself at some point, could you check?

Hi thereโ€” thank you for writing! I'm not sure I fully understand where this leak comes from, but it looks from your proposed code change that you could equivalently just...

KEGLER: Kounter-Example Guided Linguistic Expression Reasoning

See https://github.com/kach/nearley/issues/329#issuecomment-403518729.

Err, your grammar is currently not set up with lexers. That was just an example to get you started with using moo to fix your problem/parse the examples you gave....