Compatibility worries

Well there was. It was allegedly taken sometime last night and is reportedly being held hostage in an apartment outside New Jersey.

No, I rather think my neighbors sold it to buy crack. Unless they're really going to go through with a "Sopranos" reunion movie. In which case Vinnie has it, or was he rubbed out?
 
No, I rather think my neighbors sold it to buy crack.

This is getting punchy, even for us. :haha:

well if it helps brighten your lousy sounding day, I broke two ribs in the move, and it hurts like hell when I laugh. You have inflicted a sufficient amount of pain in this thread.
 
This is getting punchy, even for us. :haha:

well if it helps brighten your lousy sounding day, I broke two ribs in the move, and it hurts like hell when I laugh. You have inflicted a sufficient amount of pain in this thread.
Now Red, didn't anybody ever tell you that moving is not a full contact sport? A little voice in your head should have been screaming, "get out of the way of the falling piano", long before it ever hit you....!

On that note, I'll wish you a goodnight. BTW, if the pain goes away before the meds do, save a buddy enough to get him high.
 
Now Red, didn't anybody ever tell you that moving is not a full contact sport? A little voice in your head should have been screaming, "get out of the way of the falling piano", long before it ever hit you....!

It was an anvil, and I didn't even know the roadrunner who dropped it.
 
Wow you guys are great! Thanks for all the info especially the CPU comparison write up! AWESOME! Ok just so you guys know how this came about, I strongly believe that it is possible to produce a 1 core CPU that is capable of putting out what a now day i7 is scoring! (but that's for another posting and another time!) I also believe that this issue of bottle-necking has alot more to do with software and drivers! What I did when my friends (making fun) told me that my computer was a bottleneck itself was show them a little test! (Please explain this and I will be a firm believer in hardware bottle-necking.) I run a dual display, so on one screen I bring up the EVGA GPU utility and Windows Vista(32-bit Edition) Task manager performance screen. I crank up Crysis demo version downloaded from Nvidia's site. During the game I get 100% GPU utilization and a 73% CPU utilization that max out at about 81 or 82% and sometimes drop as low as 60% during light(graphical) moments in the game. The logical core usage fluctuates to sometimes mimic the physical core but it never exceeds the 81 or 82% usage. If hardware bottle-necking is present shouldn't it be the other way around where the CPU is at 100% and the GPU would be breezing through the calculations the CPU is feeding it with very minimum GPU utilization? Now say I added a dual-core, what more can I expect from my GPU if its usage was already maxed by a single core? Captaincranky, I believe you said something similar in one of your postings under this subject about the CPU still being the main one doing all the calculations and I agree with you 150%! Anyways thanks in advance for all of you guys input! I have emailed Intel a similar question but they never seem to reply! Thanks Again! (Also try the little test out yourself!)
 
I strongly believe 1 core is capable of putting out what a now day i7 is scoring

Assuming that you are talking about P4 here, because that was the last mainstream desktop processor to have one physical core from Intel, before Pentium D's came out.

Now that out of the way, P4 (Prescott and later) had very deep pipeline, i.e. 31 stages (if I remember correctly), having such a long pipeline makes it easier to jack up the speeds, but the downside is, accurate branch prediction becomes extremely critical, because whenever a misprediction occurs, it would result in processor halting and clearing out the whole pipeline before starting over again. However, one important milestone of P4 (Northwood onward) was introduction of HyperThreading (which is also called Simultaneous Multi-Threading i.e. SMT).

Nehalem has a very wide pipeline. It has six execution units capable of executing three memory operations and three calculation operations. If the execution engine can’t find sufficient parallelism of instructions to take advantage of them all, “bubbles”—lost cycles—occur in the pipeline.

To address this issue, SMT looks for instruction level parallelism in two threads instead of just one, with the objective of leaving as few units unused as possible. This approach can be extremely effective when the two threads are executing tasks that are highly separate. On the other hand, two threads involving intensive calculation, for example, will only increase the pressure on the same calculating units, putting them in competition with each other for access to the cache. It goes without saying that SMT is of no interest in this type of situation, and can even negatively impact performance.

Generally, the impact of SMT on performance is positive most of the time and the cost in terms of resources is reasonably limited, which explains why Intel brought it back with i7. However, do note that programmers will need to pay attention because with Nehalem (and its later incarnations), all threads are not created as equals. To help solve this conundrum, Intel provided a way of precisely determining the accurate topology of the processor (the number of physical and logical processors), and programs can then use the OS affinity mechanism to assign each thread to a processor.

Since SMT puts a heavier load on the out-of-order execution engine, Intel has made significant improvements in this area as well on i7 and increased the size of certain internal buffers to avoid turning them into bottlenecks. So the reorder buffer, which keeps track of all the instructions being executed in order to reorder them, has increased from 96 entries on the Core 2 to 128 entries on Nehalem. In practice, since this buffer is partitioned statically to keep any one thread from monopolizing all the resources, its size is reduced to 64 entries for each thread with SMT.

Obviously, in cases where a single thread is executed, it has access to all the entries, which should mean that there won’t be any specific situations where Nehalem turns out to have worse performance than its predecessor.

Therefore, you can't really imply that generation x processor's core will perform on the same level as the generation y's processor core.

Sources: For i7, Toms, I forgot where I read architectural details about Prescott's since it was light years ago ;)
 
Back