Arcsin in pytorch?

Is there an arcsin function in pytorch? I couldn’t find one.

There should be torch.asin.

To get a arcsine of input tensor you can do Y = torch.asin(X)

Thanks guys, didn’t see that.