I've committed support for the CPUID of the new sage.math. I don't
know what models 23->28 are for, but sage.math is family 6, model 29.

This website gives the CPUID for sage.math:

http://ark.intel.com/cpu.aspx?groupID=36947

fms = 0x106D1

family = ((fms >> 8) & 15) + ((fms >> 20) & 0xff);
model = ((fms >> 4) & 15) + ((fms >> 12) & 0xf0);
stepping = fms & 15;

Bill.

2008/12/22 Bill Hart <goodwillh...@googlemail.com>:
>
> I just noticed that MPIR uses generic C for all functions on the new
> sage.math. It's has Intel Xeon(R) X7460 CPU's at 2.66 GHz, however
> config.guess says p6???-unknown-linux-gnu. As it doesn't recognise it,
> it builds without assembly support.
>
> Bill.
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"mpir-devel" group.
To post to this group, send email to mpir-devel@googlegroups.com
To unsubscribe from this group, send email to 
mpir-devel+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/mpir-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to