Slashdot Mirror


User: kolbusa

kolbusa's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. USB on A Look Back At the Career of Steve Jobs · · Score: 1
    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?

  2. Re:On multicore on Donald Knuth Rips On Unit Tests and More · · Score: 1

    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.

  3. Re:Windows Powershell on Microsoft Axes 'Get The Facts' · · Score: 1

    Sure, just use pkill -15 kcalc

  4. Re:Cores and process are nice, but what about SSE( on AMD Announces August Release Date for Barcelona · · Score: 1

    Well, SSE matters much in HPC code. Intel compiler has quite decent vectorizer which helps a lot. And writing vectorizeable code is not that hard, actually.