Problem at the verification step

Hello,
I have installed pytorch with anaconda and with cuda, and I made the verification proposed :

import torch
x = torch.rand(5, 3)
print(x)

Do I need to get the exact same numbers than the result shown, or is it just this structure that I have to get (I get the same structure but different results) ?
Thank you !!

You shouldn’t expect to see the exact same results, since you are not seeding the code and even if so your setup might differ (e.g. you might be using a different PyTorch version etc.).
If the code returns random values, this smoke test was successful.