Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
stockscalper said:
Putting an Intel processor in a Mac is like putting a Hyundai engine in a Mercedes.

yeah, and consider Hyundai uses Honda engines, which are more reliable than Merc........ =)
 
TrenchMouth said:
on topic, i think this is good news, while it may not be a huge surprise to people that how these sorts of deals work, i think it does a lot to put some mac users at ease. i am looking forward to intel based macs, second generation ones that is...

I completely agree. I think this is a very promising and significant announcement for a couple of reasons:

1. Like already stated; it signifies a material commitment to Apple, which is good for Mac users. In terms of research and development, it also could signify a major strategic initiative between Apple and Intel.

2. I noticed the reference to “Skunkworks”, to me, that’s a really significant insinuation; Lockheed’s Skunkworks is centered on the development of ultra-highly advanced research and technology. To specifically reference Skunkworks strongly suggests this announcement is research and development related… maybe we’re looking at a new AIM type relationship in which Apple and Intel will develop an entirely new breed of CPU. 😎

I for one will be looking forward to the 3rd and beyond generations Intel based Mac…
 
hayesk said:
True, but Apple did release to developers "Yellow Box for Windows" - a pre-Cocoa runtime environment that ran on WinNT/95. It wouldn't take much work to ressurect it.

Yes, this presumably was a continuation of the OPENSTEP environment that ran on Windows NT that I mentioned in a post above.
 
Apple/Intel Skunkworks

As ZorPrime suggested, I think an Applegroup at Intel is extremely promising. There have been many discussions of how Intel has been frustrated with the combination of Microsoft and OEMs like Dell refusing to market CPU innovations (from MS's POV, CPU innovations are more support headaches, and from Dells POV unless it makes their computers cheaper or better at running Windows CPU innovations are worthless), and that Intel was courting Apple primarily as a vendor that will showcase their new technologies.

I expect Yonah iMacs and 'books at MWSF in a couple of months, to be followed shortly by Memrom-based machines, as these chips are already in the pipeline and they will keep Apple's machines competitive for the next couple of years. However, I expect we will see some very exciting new hardware emerging in the form of the 2008 MacIntels.

Interesting times indeed.

Cheers
 
Yvan256 said:
stockscalper: 0
0423379: 1

😉
Seems, people are forgetting that Diamler-Chrysler decided to replace the sucky/problematic 2L engine in the Neon replacement with a Hyundai unit.

---

Nothing wrong with Intel forming a group to interact with Apple and meet their needs.
 
rlwimi said:
Yonah has turned out to be a complete joke - hot and slow. (Gee, anyone surprised?)

Has anyone recently checked Intel's announcement of Yonah/Merom power consumption with their various power-usage versions? As of yesterday?

rlwimi said:
Can't wait to fork out cash for a POS Apple Intel notebook that:

* Can't run any modern G5/Altivec software

Note the news, this morning, that Rosetta will now include Altivec support.

rlwimi said:
* Runs the vast majority of Mac software in emulation at a slower speed than current G4 laptops

Depends on the system running Rosetta, which is significantly better performing than traditional emulation. Rosetta isn't emulating a G3/G4, by the way.

rlwimi said:
* Doesn't have battery life any longer than current G4 laptops

Depends on the power draw of the rest of the motherboard; if you assume that the CPU is the sole criterion of power consumption, you're wrong.

rlwimi said:
So much for the lies Jobs told at WWDC...

Which lies? Serious charge, Ace.

rlwimi said:
I guess you shouldn't have tried to play hardball with IBM over the mobile 970 design Stevie boy! Now you're hardware line is F-ed, big time baby!

Apple on Intel, I'm soooo excited!!!

Try the decaf for a change.
 
rlwimi said:
Yonah has turned out to be a complete joke - hot and slow. (Gee, anyone surprised?)

Can't wait to fork out cash for a POS Apple Intel notebook that:

* Can't run any modern G5/Altivec software

* Runs the vast majority of Mac software in emulation at a slower speed than current G4 laptops

* Doesn't have battery life any longer than current G4 laptops

So much for the lies Jobs told at WWDC...

I guess you shouldn't have tried to play hardball with IBM over the mobile 970 design Stevie boy! Now you're hardware line is F-ed, big time baby!

Apple on Intel, I'm soooo excited!!!
Exactly how I feel about this...
 
SPUY767 said:
Dull doesn't have a group, dull runs microsoft software, Intel cares bout the software, not the hardware. Dell buys Chips designed to run windows as best as is possible.
I think he meant that the Intel group is Dull 😛
 
sehix said:
Has anyone recently checked Intel's announcement of Yonah/Merom power consumption with their various power-usage versions? As of yesterday?

Note the news, this morning, that Rosetta will now include Altivec support.

What announcement, where? I checked Intel's Pressroom, and I couldn't find that. Perhaps you could give as a link, please? 😉

Edit: Oh, nevermind 😱 Just found that on Page 2 😛
 
May the Lords bless the souls of those engineers who will be working OT over Christmas and New Year to bring us our Intel Macs in time for MWSF 😀
 
sehix said:
Note the news, this morning, that Rosetta will now include Altivec support.

this is great news! 🙂 you wouldn't happen to have a link with the details of Rosetta's support of AltiVec, that would be cool to read.

Edit: Sorry to repeat the Link request, was beaten to it. 😱
 
Anybody know what an Apple PowerSchool is? I live near a big big set of Intel buildings, and near them is an Apple PowerSchool? I doubt these are related, but, ummm, maybe they are. Anybody know?
 
Altivec support is not that important

sehix said:
Note the news, this morning, that Rosetta will now include Altivec support.
Link, please.... Not even Apple has posted this news.

BTW, support for Altivec is interesting, but not that important.

It would be fairly easy for QuickTransit to decode Altivec instructions to its intermediate language - since most Altivec instructions can be simply expressed as "do this operation on sets of 4 to 16 items that are side-by-side in memory".

Code:
For example,

      int a[4], b[4], c[4];

      c = altivec_add (a,b)

is the same as

      int a[4], b[4], c[4], i;

      for (i=0; i<4; i=i+1)
          c[i] = a[i] + b[i];

=========================================================
and
      int a[4096], b[4096], c[4096], i;

      for (i=0; i<4096; i=i+4)
          c[i] = altivec_add (a[i], b[i])

is the same as

      int a[4096], b[4096], c[4096], i, j;

      for (j=0; j<4096; j=j+4)
      {
          for (i=j; i<j+4; i=i+1)
             c[i] = a[i] + b[i];
      }

which is also the same as

      int a[4096], b[4096], c[4096], i;

      for (i=0; i<4096; i=i+1)
          c[i] = a[i] + b[i];
In essence, that would simply convert a G4 or G5 instruction stream to a G3 instruction stream. Useful to run programs that *require* Altivec, but not necessarily any faster.

What would be noteworthy would be for QuickTransit to *generate* SSE2 instructions in its optimizing kernel. That would mean recognizing that the intermediate language describes parallel operations, and outputing SSE2 instructions to do them in parallel.

Something especially interesting about this, however, is that if the code generator could do that - it could generate SSE2 instructions for programs that didn't use Altivec originally!

In essence, it could turn a G3 into a G4 and at times run even faster than the original.

(QuickTransit technical brief)
 
Who Cares About Intel Graphics On The Box

Piarco75 said:
I just hope that Apple never use Intel Graphics. Ever. That would be a dealbreaker for me.....
You have got to be kidding. Faster is better no matter what graphics they put on the box.😛

Apple never puts graphics of any sort on their computers any more. Only the prominent Apple logo.
 
I was under the impression that the latest Intel chips, like Yonah, were made power hungery. I saw someone mention earlier that there are new press releases on those chips, insinuating that they are doing better in that department. Where do I go to find this?

Since I have not seen this above mentioned press release I have to go on what I have read on Cnet and Ars. From those places it is really disconcerting to see that the first chips since Intel's public commitment to performance per wattage gains have come to be far from impressive. At the same time this happens, IBM comes out with the 970FX which apparently does a better job, though I have not seen any hard data, in that department than Apple lead us to believe.

I am not trying to flame the new Intel Mac arrangement, just showing concern about the fact that Intel's results have not yet matched Apple and their promises.
 
rlwimi said:
Yonah has turned out to be a complete joke - hot and slow. (Gee, anyone surprised?)

It's a well know industry fact that Intel's first release of any consumer product is always rushed so there's always a few major bugs in it..... heat, speed, stability issues and insane overcloakability comes to mind 🙂

Remember the rushed release of the Celeron 300A??? The Intel guys got that one wrong because that processor could be clocked to 450Mhz no problems and it could easily outperform the 400Mhz Pentium equivelant.

Still I kind of feel that we are going to have one of those cool wow Apple moments in January....
 
EricNau said:
Anybody know what an Apple PowerSchool is? I live near a big big set of Intel buildings, and near them is an Apple PowerSchool? I doubt these are related, but, ummm, maybe they are. Anybody know?

Powerschool is a web based school solution for grades and such.
 
MacIke said:
Powerschool is a web based school solution for grades and such.

Maybe it's really a cover up, and in the basement is where all the Apple-Intel stuff takes place! 😱
 
No no no, you guys have it all wrong.

The Apple group formed by Intel are currently going through the sets of Buffy The Vampire Slayer looking through all the old books for some sort of incantation that will save their company from the Motorola Curse.

Intel is a big company and will resort to anything, including the occult to ensure that the processors they provide will not be forced down in speed, get stuck in development for nearly a year and then peter out at the top end of the scale with no possibility of improvement.

Hellboy is rumoured to be a member.
 
Multimedia said:
You have got to be kidding. Faster is better no matter what graphics they put on the box.😛

Apple never puts graphics of any sort on their computers any more. Only the prominent Apple logo.
I think Piarco is talking about intel integrated on-board graphics, as opposed to a dedicated graphics processor/card...
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.