<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: International Workshop on Multicore Software Engineering (IWMSE)</title>
	<atom:link href="http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/feed/" rel="self" type="application/rss+xml" />
	<link>http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/</link>
	<description></description>
	<pubDate>Wed, 09 Jul 2008 05:14:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: octavp</title>
		<link>http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/#comment-12580</link>
		<dc:creator>octavp</dc:creator>
		<pubDate>Fri, 16 May 2008 19:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/#comment-12580</guid>
		<description>Last week I participated to the IWMSE 2008 workshop on parallelizing applications for the multicore era.
The focus of the workshop was on different techniques to ease the burdain on the developers shoulders when writting parallel applications for the multicore systems.

 Our contribution to the workshop was a paper on Intel Threading Building Blocks. The focus of the talk was on the unfair, 
non-preemptive TBB task scheduler and since the talk spawned a couple of interesting discusions I can say that it was very well received. Our time slot was right after the keynote on Software Transactional Memory held by Intel's Senior Principal Engineer Ali-Reza Adl-Tabatabai from the Intel Programing Systems Lab. The foils in pdf format are available here (http://delivery.acm.org/10.1145/1380000/1370084/p1-adl-tabatabai.pdf?
key1=1370084&#38;key2=3384390121&#38;coll=portal&#38;dl=GUIDE&#38;CFID=68389686&#38;CFTOKEN=78260560)

While all talks were very interesting a couple of them were very good ones. The "GNU libstdc++ parallel mode: Software Engineering Considerations" was one of them. The basic ideea was to go and parallelize, using OpenMP annotations, several of the standard algorithms that STL puts at our disposal. One may use the library, which comes for free (experimental) with GCC 4.3, either at compile time (using a specific compiler flag) or directly in the source code by explicit declaration. Using the STL parallel mode enables existing serial code to take advantage of many parallelized STL algorithms, an approach to making use of multi-core processors which are now or will soon will be ubiquitous. You can download the paper from here 
http://delivery.acm.org/10.1145/1380000/1370089/p15-singler.pdf?key1=1370089&#38;key2=7927390121&#38;coll=portal&#38;dl=GUIDE&#38;CFID=68389686&#38;CFTOKEN=78260560.

In my opinion "The Software Thread-Level Speculation – An Optimistic Library Implementation" talk was one of the highlights of the day. Cosmin Oncea's presentation style made it even more interesting. Software thread level speculation solutions tend to mirror the hardware ones, in the sense that they employ one, exact dependency-tracking mechanism. The paper presents two different approaches: the software TLS model and the PolyLibTLS library which encapsulates several other lightweight models. The library is based heavily on meta-programming techniques and tries like almost all other libraries to pave the way towards an easy parallel programing approach for the multicore era. Fro the foils please check out the link bellow

http://delivery.acm.org/10.1145/1380000/1370090/p23-oancea.pdf?key1=1370090&#38;key2=6968390121&#38;coll=portal&#38;dl=GUIDE&#38;CFID=68389686&#38;CFTOKEN=78260560.

In conclusion, it is nice to see that the academic community takes part actively in the transition process from programming for single core towards programing for the multicore systems. We are at the begining of this transition phase and I am very confident that new and better ways of expressing parallelism for multi-core will evolve from different research projects that are going on all over the world. One thing is for certain, multi-core systems are here to stay and we need to come up with better ways to program these systems.</description>
		<content:encoded><![CDATA[<p>Last week I participated to the IWMSE 2008 workshop on parallelizing applications for the multicore era.<br />
The focus of the workshop was on different techniques to ease the burdain on the developers shoulders when writting parallel applications for the multicore systems.</p>
<p> Our contribution to the workshop was a paper on Intel Threading Building Blocks. The focus of the talk was on the unfair,<br />
non-preemptive TBB task scheduler and since the talk spawned a couple of interesting discusions I can say that it was very well received. Our time slot was right after the keynote on Software Transactional Memory held by Intel's Senior Principal Engineer Ali-Reza Adl-Tabatabai from the Intel Programing Systems Lab. The foils in pdf format are available here (http://delivery.acm.org/10.1145/1380000/1370084/p1-adl-tabatabai.pdf?<br />
key1=1370084&amp;k ey2=3384390121&amp;coll=portal&amp;dl=GUIDE&amp;CFID=68389686&amp;CFTOKEN=78260560)</p>
<p>Whi le all talks were very interesting a couple of them were very good ones. The "GNU libstdc++ parallel mode: Software Engineering Considerations" was one of them. The basic ideea was to go and parallelize, using OpenMP annotations, several of the standard algorithms that STL puts at our disposal. One may use the library, which comes for free (experimental) with GCC 4.3, either at compile time (using a specific compiler flag) or directly in the source code by explicit declaration. Using the STL parallel mode enables existing serial code to take advantage of many parallelized STL algorithms, an approach to making use of multi-core processors which are now or will soon will be ubiquitous. You can download the paper from here<br />
<a href="http://delivery.acm.org/10.1145/1380000/1370089/p15-singler.pdf?key1=1370089&amp;key2=7927390121&amp;coll=portal&amp;dl=GUIDE&amp;CFID=68389686&amp;CFTOKEN=78260560" rel="nofollow">http://delivery.acm.org/10.1145/1380000/1370089/p15-singler......N=78260560</a>.</p>
<p>In my opinion "The Software Thread-Level Speculation – An Optimistic Library Implementation" talk was one of the highlights of the day. Cosmin Oncea's presentation style made it even more interesting. Software thread level speculation solutions tend to mirror the hardware ones, in the sense that they employ one, exact dependency-tracking mechanism. The paper presents two different approaches: the software TLS model and the PolyLibTLS library which encapsulates several other lightweight models. The library is based heavily on meta-programming techniques and tries like almost all other libraries to pave the way towards an easy parallel programing approach for the multicore era. Fro the foils please check out the link bellow</p>
<p><a href="http://delivery.acm.org/10.1145/1380000/1370090/p23-oancea.pdf?key1=1370090&amp;key2=6968390121&amp;coll=portal&amp;dl=GUIDE&amp;CFID=68389686&amp;CFTOKEN=78260560" rel="nofollow">http://delivery.acm.org/10.1145/1380000/1370090/p23-oancea.p.....N=78260560</a>.</p>
<p>In conclusion, it is nice to see that the academic community takes part actively in the transition process from programming for single core towards programing for the multicore systems. We are at the begining of this transition phase and I am very confident that new and better ways of expressing parallelism for multi-core will evolve from different research projects that are going on all over the world. One thing is for certain, multi-core systems are here to stay and we need to come up with better ways to program these systems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wolfgang Rosenberg (Intel)</title>
		<link>http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/#comment-12542</link>
		<dc:creator>Wolfgang Rosenberg (Intel)</dc:creator>
		<pubDate>Wed, 14 May 2008 19:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://softwareblogs.intel.com/2008/05/09/international-workshop-on-multicore-software-engineering-iwmse/#comment-12542</guid>
		<description>If you want to read more and understand what Theading Building Blocks are for, check out the link. The proceedings of IWMSE have been published. They contain the description of our tutorial:

http://portal.acm.org/citation.cfm?doid=1370082.1370085

Looking forward to your comments or questions. For a more detailed discussion please use the Forum section.</description>
		<content:encoded><![CDATA[<p>If you want to read more and understand what Theading Building Blocks are for, check out the link. The proceedings of IWMSE have been published. They contain the description of our tutorial:</p>
<p><a href="http://portal.acm.org/citation.cfm?doid=1370082.1370085" rel="nofollow">http://portal.acm.org/citation.cfm?doid=1370082.1370085</a></p>
<p>Looking forward to your comments or questions. For a more detailed discussion please use the Forum section.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
