Linked by Thom Holwerda on Thu 16th Aug 2007 17:24 UTC, submitted by burnttoy
Intel Intel on Tuesday said it would release this week eight technical papers describing key findings from the company's work on future programmable multicore architectures. The papers will be published in the Intel Technical Journal and will provide details on how the company expects future microprocessors with simplified parallel programming models to evolve.
Thread beginning with comment 264268
To read all comments associated with this story, please click here.
My approach
by losethos on Fri 17th Aug 2007 23:09 UTC
losethos
Member since:
2007-08-15

LoseThos, my operating system, takes a distinct approach to MultiCore -- it has a graphic layer for each core which get merged together(XOR). Therefore, you make your game divide-up the screen update into zones or something for different cores and it merges them together. I'm targeting home computers for playing games where the biggest work load is updating the screen. It's one thing to run two apps twice as fast(SMP) and another thing to run one app twice as fast!! On a home system SMP is almost worthless.

I might change from XOR to AND and OR.

Zones is an inconvenient division of labor. On one app I drew horizontal grid lines with one core and vertical with the other.

Edited 2007-08-17 23:29