import torch a = torch.arange(12) b = a.reshape((3,4)) #b并没有复制a,b是创建了一个a的view(数据库里的view) b[:] = 2 a #里面的元素也都变成2了