Pytorch older version naming

Hi,

I cant find any documentation on the differences between these versions:

cu80/torch-0.3.1-cp27-cp27mu-linux_x86_64.whl
cu80/torch-0.3.1-cp27-cp27m-linux_x86_64.whl

What does the m and mu denote?

Thanks!

The cp27m and cp27mu define which version of python this wheel is for. In that case, CPython 2.7 with some specific compile arguments.
If i’m not mistaken, the m is when it has pymalloc. And the u is when you have wide unicodes.

1 Like