Turning Single into Multi-Threaded with Speculative Threading

Intel had a particularly interesting research project being demonstrated called Mitosis, a hardware and compiler solution to implementing speculative threading.

On modern day Out of Order microprocessors, the CPUs themselves will speculatively execute code based on what it thinks will need to be executed in the future - thus improving processor utilization and overall performance. This research project proposes that the same sort of speculative execution be applied on a thread level, meaning that threads are created on the fly and speculatively executed by idle cores in a system in order to improve performance on future multi-core CPUs.

The Mitosis project relies on both hardware and software (compiler) support to work. First, on the software side, blocks of code that have very few inputs and outputs are detected and considered for use as a separate thread.

The entry and exit points of the current working thread are marked, and the portion of the thread that would be split off is separated. The new thread is then fed the appropriate input data that it needs to begin its execution.

With the single thread now split into two threads, they are both sent to the multi-core processor and executed in parallel. At the end of the execution of the thread, its result is checked to make sure that the data is still valid, and if so, the result is committed and all is well. If the result is invalid the thread must be thrown away, but since we're talking about a single threaded application to begin with, there is no wasted performance, only wasted power as the core this thread was running on would have been idle had it not been for the speculative thread generation.

On the hardware side, there is one major change needed to implement Mitosis:

The inclusion of a global register file and a register versioning table to keep track of which cores have the latest and most correct register valuesis necessary. You also need some additional logic to help validate the outcome of these threads.

The end result of all of this is pretty promising, especially for single threaded applications that would otherwise get no benefit from being run on a multi-core CPU.

In order to demonstrate the performance potential, the Intel researchers working on the project took a look at performance in the Olden benchmark suite. The Olden suite was chosen because it is a set of code that is extremely difficult to parallelize. The graph below shows performance improvement over a single Out of Order core:

The green bars show the performance improvement going from single to dual core, the red bars show the performance improvement from having the benchmark and its data stored entirely within L1 cache (no cache misses) and finally the yellow bars show the performance improvement due to the use of the Mitosis compiler/hardware modifications with a dual core CPU.

As you can see, offering in many cases a 2 - 3x performance improvement is nothing short of impressive. But keep in mind, this project is in its very early stages of research and as promising as this looks, it may take 5 - 10 years for the research to make its way into the real world.

ATI's CrossFire on Intel 955X Motherboards Intel's BTX, Back at the Show
Comments Locked

14 Comments

View All Comments

  • jediknight - Wednesday, August 24, 2005 - link

    What encryption algorithm does the Seagate drive use? And is it firmware-upgradeable?
  • smn198 - Thursday, August 25, 2005 - link

    I'd like moredetails on this. If you've got an OS installed and no key yet, could you then add a key and have it re-encrypt the data or would you need to pull the disk out and do this from another system? Shame Seagate won't ship software. Is there anything free?
  • missleman - Wednesday, August 24, 2005 - link

    BONZI BUDDY?!?!?! WTF? I cant beleive intel was stupid enough to install that on their computers.
  • JarredWalton - Wednesday, August 24, 2005 - link

    Maybe it was a demonstration of malware getting installed on one virtual OS, and then another OS could detect it and remove it? I know Intel has talked about using virtualization for virus-related stuff before, so it's not too much of a stretch.
  • Hacp - Wednesday, August 24, 2005 - link

    Also nice to see the Xbox360... I'm not gonna buy one.
  • xsilver - Wednesday, August 24, 2005 - link

    is amd moving to ddr2 and then m2 sockets in a 2 stage process?
    if so that's pretty evil -- makes users upgrade twice
  • JarredWalton - Wednesday, August 24, 2005 - link

    No, M2 is DDR2 for desktops. S1 is DDR2 for the mobile sectore. F is for the server/workstation market. All are DDR2-only solutions, and there will be no DDR2 support without a socket transition.
  • IamTHEsnake - Wednesday, August 24, 2005 - link

    Mitosis looks promising indeed.

    It's technologies like this that intrigue me. This is more of what Intel should focus on, not just the brute computational strength of mhz or pipeline stages.


    I am also looking forward to hearing more about die-stacking and DRAM-on-die.
  • Furen - Wednesday, August 24, 2005 - link

    Yes, mitosis sounds nice indeed (though I'd expect it to be worthless on tasks like gaming), hopefully the software overhead wont be too bad by the time we start seeing it.
  • phaxmohdem - Wednesday, August 24, 2005 - link

    One has to wonder in Re: to Mitosis...

    They say that it is just started in Research and Development, and that we may not see if for 5-10 years..... By then wouldn't all apps be written to take advantage of multithreading? Thus rendering Mitosis a day late and a dollar short?

Log in

Don't have an account? Sign up now