You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importpytensor.scalaraspsimportpytensor.tensoraspta=ps.float64("a")
b=pt.vector("b")
b*a# Finea*b# TypeError: TypeError: Cannot convert b to a scalar type
It tries to convert b to a scalar, which fails. When it fails, it should try to multiply b * a, which works
The text was updated successfully, but these errors were encountered:
Description
It tries to convert
b
to a scalar, which fails. When it fails, it should try to multiply b * a, which worksThe text was updated successfully, but these errors were encountered: