mitsuba-renderer / drjit

Dr.Jit — A Just-In-Time-Compiler for Differentiable Rendering
BSD 3-Clause "New" or "Revised" License
593 stars 43 forks source link

An issue with dr.repeat and dr.tile #86

Closed mariasoroka closed 2 years ago

mariasoroka commented 2 years ago

As the title suggests, I am encountering some issues with dr.repeat and dr.tile.

The following fails with an error AttributeError: module 'drjit.llvm.ad' has no attribute 'UInt8'

import drjit as dr
import mitsuba as mi
mi.set_variant('llvm_ad_rgb')

b = mi.Bool([True, False])
dr.repeat(b, 2)

The error message is the same for dr.tile.

Speierers commented 2 years ago

Thanks for reporting this. This is now fixed c15a71d