Erick Wrote:I'm sorry if you are dissappointed guys.. but you do NOT need i5's or i7's to run an application such as Dolphin.
Dolphin doesn't
need an i5 or i7 to run Dolphin. As long as the processor supports SSE2, it'll run (there's even a patch to get around that). What's more relevant is how fast the application will run. Currently, as others have pointed out, there are some games with LLE audio that only overclocked Sandy/Ivy Bridge chips can play at fullspeed consistently. This has been a widely observed phenomenon, though you're free to provide evidence to the contrary.
Erick Wrote:But no, as with any flight simulator, the multiple tasks running have no comparison to any emulator, there are thousands of variables running in a simulator.
I really don't know what your argumentative point is in saying flight simulators have thousands of variables. Variables are just values stored in memory. You could make a simple "Hello World" program with thousands of variables. The number isn't what's important; it's the type and frequency of calculations you perform on them.
Dolphin spends a lot of CPU time translating instructions native to the GC/Wii into something your computer can understand and process. Emulators are incredibly complex programs; you can verify this by looking at Dolphin's code. It's not outside the realm of possibility that Dolphin could in fact be more demanding than most flight simulators, depending on what game it's running and under what conditions (The Last Story with LLE audio + EFB Copies -> RAM for kicks).
Erick Wrote:You need to stop acting like intel is superior.
People here are very careful to specify that Intel CPUs are better for Dolphin. Other applications (Adobe's stuff, movie editors, encryption, compression) are covered by other benchmarks. The community, as a whole, agrees that Intel's most recent chips perform better, clock-for-clock, than AMD's current offerings. This has been consistently reported by users doing comparisons. Like I said, you're free to post your results (and this is something we very much encourage) if you feel that we have been mislead.
Erick Wrote:There are no applications that are developed to function better with any CPU, and it is ignorant to say an application REQUIRES ivy bridge. I'm sorry, but that is just retarded.
This is very much false. There are plenty of applications out there that can run inline x86 assembly for certain operations. However, the developers might not know the equivalent assembly for different platforms, such as MIPS or ARM, so they code those operations in C++ when porting. The C++ gets translated into MIPS or ARM assembly, but there's a good chance the compiler will generate slower code than could be made by hand. In these cases. The program can be viewed as being programmed more efficiently for x86 systems as opposed to MIPS or ARM.
Erick Wrote:My point is that if my cpu can run an incredibly demanding application such as FSX, which I assume you are not familiar with, it shouldn't have problems at all running dolphin, which is true. Most intel fanboys have not even used a computer with an AMD chip in their lives, they only listen to benchmarks from toms hardware. It's sad really.
It depends on why FSX is demanding. If it's doing a task that similar or equivalent to Dolphin, your point would have more standing. But FSX isn't constantly recompiling code. Let me illustrate this with an example:
It isn't very hard to make a small program that could max out all four of my cores. I just need to create 4 threads and tell each thread to do something (e.g. add 1 to some number) without stopping. I could even have it dynamically grab more memory (RAM). In this sense, since most of my resources would be used, it's technically more "demanding" than Dolphin. However, it'd be very short-sighted to claim that Dolphin or even FSX should run just fine since my computer can run this (rather asinine) little program. They're all doing completely different tasks. You need a program that's very similar in nature to Dolphin to start drawing these sorts of comparisons.