-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python 3.6.2 on older 64-bit Linux fails with "Illegal instruction" #6400
Comments
We require at least From my understanding, over 99.99% of Intel computers have |
Well, that's unfortunate. My users would be quite upset if told them I was going to decommission their Linux cluster just because Anaconda doesn't work on it (everything else in CentOS 6 does). So I guess we'll just have to stick with an older version of Anaconda here. |
I'm very sorry that your cluster doesn't have this feature, but I don't think we can rebuild all of our software for the next notch down at this point. Your CPU is 130 nm (http://www.cpu-world.com/CPUs/K8/AMD-Opteron%20242%20-%20OSA242CCO5AH.html), while SSE3 was added to opterons at the 90nm process level: https://en.wikipedia.org/wiki/Opteron The first release of the 90nm process was February 2005. I think it is reasonable to require a CPU from the past 12 years. It would probably cost us comparably in time to do those rebuilds than it would cost you to replace your cluster with a smaller number of new, more powerful nodes to have equivalent computing capability. Your energy bill would be lower, too. If you really need this cluster to stay alive, yeah, stick with older anaconda, build updated packages yourself, or contact [email protected] to get us to build it for you. |
You don't need to tell me when we purchased this cluster - I remember ;) We are academics so our energy bill is zero - grant money doesn't work the same way as real money. We will work around this for now, but it would be nice not to be surprised by things like this again in future - where are changes like this announced? I didn't see this on the Anaconda blog, for example. |
There was no announcement, we really did not expect anyone to do serious computing on such outdated hardware! |
The problem is other impoverished academics use hardware even older than ours, then complain to us when the conda packages of our software don't work on their machines. I can't point them to your requirements page, because it just says they need CentOS 6+, not that they also need newer hardware. |
@msarahan perhaps we can open a discussion internally about publishing a specific hardware baseline |
We can probably dial back a bit the CFLAGS and as packages get rebuilt, the issue would go away slowly (at the cost of a slower distro). Can you point to what older hardware people are using? AFAICT, you are using just about the oldest possible 64-bit Intel (architecture-wise) CPU in existence. @bryevdv that sounds like a good idea. |
On the 64-bit side, yes, I think we have the oldest. But people still run our software on 500MHz Pentium III machines... |
Yes, @bryevdv, we need that. Had it existed before, Ray and I would have known to make a more cautious choice about any changes. Because of the implications, we need to make this choice as a company, not as a couple of people. |
That was my intended meaning with "open a discussion internally" |
Since the most recent
conda update
, python (and thus pretty much everything using Python, includingconda
itself) fails withIllegal instruction
on older 64-bit Linux machines running CentOS 6. Works OK on some newer 64-bit machines though, so my guess is your most recent Python build is just pulling in a newer set of instructions (I see you rebuilt it with a newer gcc).On the affected machine:
While on the unaffected machine:
If I force a downgrade to Python 3.6.1 with
conda install python=3.6.1
then everything works OK on both machines - but I'd rather not have to do that!The text was updated successfully, but these errors were encountered: