A suggestion from Ross Girshick: ``` python x = Variable(torch.ones(2, 2)) y = x + 2 z = y * y ``` Allow this instead of giving an error (current master): ``` python z.backward() ```