How does the whl package in pytorch.org be make?

I have always had a doubt. If the whl package on PyTorch’s official website was made on a CPU that supports AVX512, and my CPU does not support AVX512, what would happen if I pip install the whl package on the official website?

I would expect to see a SIGILL, Illegal instruction being raised during the import if your CPU does not support the needed instruction set.

I see, I thought there was some black magic that could make the WHL package on PyTorch’s official website run on any CPU, hahaha

—Original—