Forgot your password?
typodupeerror

Comment Not really, AMPs are a superset (Score 1) 3

To the AMP guy, no the AMD thingie is a superset of both GPU and CPU. They are talking about integrating them hence the distinction still remains. The workloads for CPU and CPCPU will become closer due to AMD's idea but not exactly the same for saving power.

Comment C/C++? (Score 1) 1

Nice article. I knew some of it already but had not thought of the function calls across multiple files. My problem is however is that why people use C/C++ at all. I understand that C/C++ programmers need to jump through a lot of hoops to get the compiler to understand the big picture. This is why I prefer JAVA because their is no ambiguous code. The compiler knows everything and every dependency.

Comment Re:Nostalgic. Interesting. But single thread? (Score 1) 3

Nope dude. Wrong argument! Speeding up a single thread is like speeding up each individual thread, in addition to your Ahmdahl's (dunno what you really meant there). Make single-thread faster then all threads become faster which makes the program faster. Multi-threading is not a magic, just means there are multiple single threads running with each other so single thread is always relevant. LOL@nostalgic btw.

Comment Doesn't this mean iPhone needs serious work! (Score 1) 3

I see his point that in-order cores are becoming common. I mean iPhone has an in-order core and they are common, hence in-order cores are common ... no debate. What I am thinking about is the importance of the optimizations Shouldn't all iPhone app developers know about these optimizations? This seems like it can be a big win for all cell phone developers to follow some of these techniques. I do notice some very slow apps on my iphone and wonder his arguments play a role.
Apple

Submission + - Amazon Challenges Apple With Mac App Store (computerworld.com) 1

CWmike writes: "Amazon launched a Mac-specific application download store on Thursday that will compete with Apple's nearly five-month-old Mac App Store. The new subsection of Amazon's massive online store, dubbed 'Mac Software Downloads,' kicked off quietly Thursday. Amazon has long offered software downloads for both Windows and Mac customers, but this was the first time that the company called out its Mac-centric 'store.' The retailer, however, apparently did not want to goad Apple into another legal battle by mimicking its rival's 'App Store' moniker: The two companies are already in court over Amazon's 'Appstore for Android,' which Apple claims violates its trademark. Unlike the Mac App Store, which Apple opened in early January, Amazon's includes the popular Office for Mac line from Microsoft."
Programming

Submission + - What makes parallel programming hard? (futurechips.org)

An anonymous reader writes: Intel’s Aater Suleman writes about why parallel programming is difficult. He uses real life code examples to show why finding parallelism is difficult and specifying it is a daunting task. I was unaware of the fact that a major challenge in multi-threaded programming lies in optimizing parallel programs, not just getting them to run. Aater Suleman presented a full case study (http://www.futurechips.org/tips-for-power-coders/writing-optimizing-parallel-programs-complete.html) of how code is parallelized and the kind of issues parallel programmers must tackle to get high performance. His analysis is insightful and the case study is very enlightening if you are unfamiliar with parallel code debugging. His article has already been featured on sites like insidehpc.com and multicore.info .

Slashdot Top Deals

The closest to perfection a person ever comes is when he fills out a job application form. -- Stanley J. Randall

Working...