Hi All,
When I'm trying to do this simple element wise multiplication:
"""
A = tn.ones(10,10).to(torch.long)
B = tn.rand(10,10).to(torch.long)
result = tn.mul(A,B)
"""
I get an error saying that tensors used as indices must be long, byte or bool. However, it seems like the error is produced within the tn.cross function. Any ideas on how to fix this?

Thank you and cheers,
Bastien