Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror

Comment USB (Score 1) 324

From the article:

The iMac was also noteworthy for introducing the mass market to USB, a connection technology invented by Intel that was frankly dying.

Does anybody know how well does this correspond to the actual history?

Comment Re:On multicore (Score 1) 567

You are not only going to get very low scaling (due to Amdahl law) unless all you do is calling quicksort, but also can get worse performance if your libraries make bad decisions when to run in parallel and when not. To get reasonable scaling one needs to parallelize at the highest level possible and design accordingly. I work pretty much with application called WRF and it has _hybrid_ MPI+OpenMP parallelization: 2D domain decomposition with parallelized with MPI + tiling inside each subdomain with OpenMP. This makes its computational part extremely scalable.

Slashdot Top Deals

... though his invention worked superbly -- his theory was a crock of sewage from beginning to end. -- Vernor Vinge, "The Peace War"

Working...