Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Isn't this part of what VLIW has already tried? (Score 1) 404

Afaik, the problem with VLIW processors in general is that they attempt to exploit instruction-level parallelism.

This is an entirely different beast to what's presented in the paper.

Instruction-level parallelism occurs when there are instructions within a (fixed) window of a code stream where there are no dependencies between two or more instructions.

The VLIW paradigm is have bundles of instructions which contain all instructions that can be executed simultaneously. This shifts complexity from the hardware[1] to the compiler.

Unfortunately, ILP can be very difficult to extract from arbitrary code, though cases exist where it's trivial.

[1] Latter RISC chips and today's non-mobile CPUs take advantage of ILP through the use of multi-issue out of order execution. Out-of-order execution typically defers execution of any given instruction until all its dependencies have been fulfilled i.e. memory/cache accesses have occurred, previous results are available, etc. By making these units multi-issue the CPU dynamically exploits ILP to the availability of hardware, no recompilation required (though it may help).

These hardware techniques are slowly coming to the mobile arena as they are relatively expensive transistor wise.

Comment Re:This is a stupid article (Score 1) 402

> Maybe Oracle can actually expand Java. Oracle owns silicon, so why not make a processor that is designed from the ground up for Java bytecode? Perhaps even build it into the SPARC architecture . ARM tried it with Jazelle in earlier cores which they've replaced with the ThumbEE and successor. JIT compilers (and in ARM's case simpler+compact instructions) seem to have been more economical than implementing a (partial) second instruction set in a processor and requiring to be at least as fast the JIT competition.

Comment Re:This is what's wrong with private healthcare. (Score 2) 646

Really?

http://www.irishdentist.ie/news/news_detail.php?id=3969

Mind you this was a walk-in procedure, not an impacted tooth or anything. And it definitely wasn't subisidized by the Irish government (that's where you get a discount for paying PRSI). Which appears to have been cut.

Leaching indirectly off insurance companies? That'd be interesting given the VHI tend to refund costs of low priced stuff to the you directly afaik.

Comment Re:This is what's wrong with private healthcare. (Score 1) 646

A $1000 dollars for a wisdom tooth extraction? I had one extracted in Ireland as a walk-in patient. No insurance mentioned, no PRSI slips shown.

60 Euro. And that included an X-Ray to say, "Yes, that tooth is pretty much irrecoverable".

And I probably could have gotten it performed cheaper outside the capital.

Comment Re:The end of Moore's Law would be good (Score 1) 250

> It would mean that development cycles slow down, algorithmics finally win over brute force and that software quality would have a chance to improve (after going downhill for a long time). Um, nope. Companies will simply sell bigger boxes to run their bloated code. > GPUs as CPUs? Ridiculous! Practically nobody can program them http://www.nvidia.com/object/cuda_apps_flash_new.html > and very few problems benefit from them. Media encoding/transcoding. Scientific code, minimum spanning trees can also be done a a GPU. If you mean by a 'few problems' that it doesn't run Word/Office/Java etc, then yes. Otherwise if it's a case that the algorithmics (sic) can be done in a data parallel fashion, then the problem might be able to done on a GPU.

Slashdot Top Deals

This file will self-destruct in five minutes.

Working...