Is torch.tile deprecated & no longer supported?

Hello Nicholas!

I think you have it backwards. Rather than being deprecated, it
appears that tile() is a new function.

I see tile() absent from the 1.7.0 documentation, but present in the
master (unstable) documentation you linked to.

Here is tile() in a somewhat old nightly build:

>>> import torch
>>> torch.__version__
'1.8.0.dev20201203'
>>> torch.tile
<built-in method tile of type object at 0x7f6626fc1360>

If tile() is useful to you, you could consider running a nightly build
(at a little bit of risk). Or stick with repeat() for the time being, it that
works for you.

Best.

K. Frank

4 Likes