<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Geek in progress &#187; 2009</title>
	<atom:link href="http://www.itkovian.net/base/tag/2009/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itkovian.net/base</link>
	<description>I am not yet done.</description>
	<lastBuildDate>Thu, 20 Oct 2011 20:56:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WCET analysis</title>
		<link>http://www.itkovian.net/base/wcet-analysis/</link>
		<comments>http://www.itkovian.net/base/wcet-analysis/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 09:27:11 +0000</pubDate>
		<dc:creator>Itkovian</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[acaces]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[barcelona]]></category>
		<category><![CDATA[summerschool]]></category>
		<category><![CDATA[wcet]]></category>

		<guid isPermaLink="false">http://www.itkovian.net/base/?p=238</guid>
		<description><![CDATA[One of the courses I am attending deals with worst case execution time analysis or WCET analysis for short.

<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3715683959/" title="Peter Puschner by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2586/3715683959_8e96126ef4_b.jpg" width="500" height="333" alt="Peter Puschner" /></a>
</div>]]></description>
			<content:encoded><![CDATA[<p>One of the courses I am attending deals with worst case execution time analysis or WCET analysis for short.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3715683959/" title="Peter Puschner by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2586/3715683959_8e96126ef4_b.jpg" width="500" height="333" alt="Peter Puschner" /></a>
</div>
<p><!--break--></p>
<p>I think that the following are the main points of interest <a<br />
href="http://www.vmars.tuwien.ac.at/people/puschner.html">Peter Puschner</a><br />
tried to get drilled into our skulls. The course focuses on the worst case<br />
analysis, and for that there are three major items one needs to take into<br />
account: the piece of code to analyse, the input it consumes and the hardware<br />
it runs on. Giving the fact the most code consumes input means that there is<br />
some state associated with it, that determines the paths takes in the static<br />
code graph. Peter clearly stated that the input should be part of the problem<br />
specification, which often complicates the analysis. Additionally, the hardware<br />
has some associated state as well (think caches, branch prediciton, etc.) that<br />
influences the timing of each task we want to analyse. Different instances of<br />
actions in the task have different durations, and as such the sequence of the<br />
actions carries out during each task becomes the important factor. It was<br />
clearly illustrated that measurements are not adequatefor dealing with worst<br />
case scenario&#8217;s.  I think the lesson to take away from the first class is that<br />
there is no way to measure WCET, one must therefore analyse the program.</p>
<p>The second lesson dealt with a number of approaches for determining the WCET:<br />
tree-based (from the program graph), path-based (potential dynamic execution<br />
paths), and IPET based. Tree-based WCET does not scale well, path=based does,<br />
but that has the disadavantage of getting quite complex as the program size<br />
increases. To deal with this, the IPET technqiue can be used, in which we<br />
desribe the flow of control by using a number of equations that constrain the<br />
possibilities: program flow going ionto a node, must come out of it, so this<br />
yields a number of equations that state how many times an edge can be taken.<br />
The drawback here is that solving the equation using ILP is NP hard in general.<br />
Another technique discussed was the modelling of execution time by mapping a<br />
sequence of instructions to an execution time. This however requires<br />
information on the hardware timing to deal with the various hardware<br />
enhancements to the processor (think pipelines, caches, out=of-order execution,<br />
&#8230;). I think this seems to have quite some non-deterministic aspects.  Peter<br />
then moved on to show how one can model pipelines, to be used in the WCET<br />
analysis, as well as how one can model caches within the IPET framework.  The<br />
takeway lesson here is that there is no straighforward technique to estimate<br />
the WCET, and the most powerful techniques must use hardware timing<br />
information, which is a hard problem in itself.</p>
<p>The third lesson dealt almost exclusively with the modeling of the caches,<br />
moving from a concrete state to an abstract state, which can be reasoned about.<br />
Peter identified 4 essential categories for the analysis in a cache model:<br />
always hit, always miss, globally persistent, locally persistent, plus one<br />
leftover category. For each of these categories, there is a different semantics<br />
for the start state, the update function and the join function on the abstarct<br />
cache model. Finally, we received an introduction to potential timing anolalies<br />
that can occur and how to deal with those.</p>
<p>In the fourth lesson, the focus moved to measuring execution times. Here the<br />
key takeway was that it is very unlikely that the hardware will be set to the<br />
worst case state for executing the application, leading to (at times gross)<br />
underestimates of the WCET. For a WCET bound, more systematic techniques are<br />
required. One of the best performing WCET measurements tools relies on genetic<br />
algorithms for generating the input that drives the WC scenario. Still, for the<br />
benchmarks shown, there can be quite a large discrepancy between the<br />
analytically obtained WCET and the WCET obtained through use of a GA. Other<br />
potential techniques include a probabilisitc approach and program segmentation<br />
with a path based analysis.</p>
<p>In the final class on Friday, Peter discussed some issues with time-predicatble<br />
sofware and hardware. Predicates, transforming execution paths, etc. can be<br />
used to get more reliable WCET bounds. The major takeaway here was that the<br />
classical analysis where one focuses on the mean execution time (with its<br />
distribution, like we did in <a<br />
href="http://www.itkovian.net/base/statistically-rigorous-java-performance-evaluation">our<br />
Java stats paper</a> at <a href="http://www.ooplsa.org">OOPSLA</a>) is not<br />
going to work at all for a WCET analysis. Peter also argued for better WCET<br />
bounded hardware, or at least hardware that could make the WCET analysis<br />
easier.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3729256016/" title="Final words by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2564/3729256016_fbe8a59c3e.jpg" width="333" height="500" alt="Final words" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.itkovian.net/base/wcet-analysis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ACACES 2009 Summer School in Barcelona</title>
		<link>http://www.itkovian.net/base/acaces-2009-summer-school-in-barcelona/</link>
		<comments>http://www.itkovian.net/base/acaces-2009-summer-school-in-barcelona/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 09:20:18 +0000</pubDate>
		<dc:creator>Itkovian</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[acaces]]></category>
		<category><![CDATA[barcelona]]></category>
		<category><![CDATA[hipeac]]></category>
		<category><![CDATA[summerschool]]></category>

		<guid isPermaLink="false">http://www.itkovian.net/base/?p=237</guid>
		<description><![CDATA[Like the previous years, our research group, which is part of the <a href="http://hipeac.net">HiPEAC</a> network, organises the ACACES Summer School. Due to the earthquake hitting L'Aquila a few months ago, we've relocated to Terrassa, near Barcelona, Spain.

<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&#38;source=s_q&#38;hl=en&#38;geocode=&#38;q=+Terrassa,+Spain&#38;sll=41.575292,2.059776&#38;sspn=0.002336,0.00567&#38;ie=UTF8&#38;t=k&#38;ll=41.57526,2.060366&#38;spn=0.011237,0.018239&#38;z=15&#38;iwloc=A&#38;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&#38;source=embed&#38;hl=en&#38;geocode=&#38;q=+Terrassa,+Spain&#38;sll=41.575292,2.059776&#38;sspn=0.002336,0.00567&#38;ie=UTF8&#38;t=k&#38;ll=41.57526,2.060366&#38;spn=0.011237,0.018239&#38;z=15&#38;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small>

The facilities are sweet, the food is good (so far), and there is a neat swimming pool. And free WiFi.]]></description>
			<content:encoded><![CDATA[<p>Like the previous years, our research group, which is part of the <a href="http://hipeac.net">HiPEAC</a> network, organises the ACACES Summer School. Due to the earthquake hitting L&#8217;Aquila a few months ago, we&#8217;ve relocated to Terrassa, near Barcelona, Spain.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=+Terrassa,+Spain&amp;sll=41.575292,2.059776&amp;sspn=0.002336,0.00567&amp;ie=UTF8&amp;t=k&amp;ll=41.57526,2.060366&amp;spn=0.011237,0.018239&amp;z=15&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=+Terrassa,+Spain&amp;sll=41.575292,2.059776&amp;sspn=0.002336,0.00567&amp;ie=UTF8&amp;t=k&amp;ll=41.57526,2.060366&amp;spn=0.011237,0.018239&amp;z=15&amp;iwloc=A" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>The facilities are sweet, the food is good (so far), and there is a neat swimming pool. And free WiFi.</p>
<p><!--break--></p>
<p>Case in point: my room. It had WiFi, and UTP jacks at the desk and the toilet <img src='http://www.itkovian.net/base/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3714056885/" title="Room by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2553/3714056885_9da611aef4.jpg" width="500" height="333" alt="Room" /></a>
</div>
<p>The building had a very neat design, using rusty metal and metal moveable shutters.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3717281474/" title="Construction by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2545/3717281474_b8f39b18fb.jpg" width="500" height="333" alt="Construction" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3717250818/" title="Back side by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2595/3717250818_a68fe66121.jpg" width="500" height="333" alt="Back side" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3720063733/" title="Design by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2551/3720063733_74fb746f10.jpg" width="333" height="500" alt="Design" /></a>
</div>
<p>The pool was really enjoyable, even at 1:00 AM, though people tended to dive in with their clothes on at that point.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3717248752/" title="Pool by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2640/3717248752_a5c1daaaf1.jpg" width="500" height="333" alt="Pool" /></a>
</div>
<p>Next to the main conference hotel, there was an older building, where we held our poster session. And where the wedding party we crashed on Friday was held.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3724557515/" title="Poster session location by Itkovian, on Flickr"><img src="http://farm3.static.flickr.com/2659/3724557515_8176b9b59e.jpg" width="500" height="333" alt="Poster session location" /></a>
</div>
<p>Over the next few days, I&#8217;m going to post the notes I have taken in the courses I am attending. Nothing fancy, just what I jotted together.</p>
<p>If you are on twitter, you can also <a href="http://search.twitter.com/search?q=%23acaces09">grab</a> the posts tagged with #acaces09, since Alasdair Hawsthorne (previously with Transitive) asked us to use them during his invited talk on Monday evening.</p>
<p>As I have been appointed as the official photographer of the event, pictures will be available in large quantities on <a href="http://www.flickr.com/photos/itkovian/sets/72157621355868826/">flickr</a>. There is also a flickr ACACES <a href="http://flickr.com/groups/acaces">group pool</a> where you can add notes, tag the pictures and add your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itkovian.net/base/acaces-2009-summer-school-in-barcelona/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skiing trip</title>
		<link>http://www.itkovian.net/base/skiing-trip/</link>
		<comments>http://www.itkovian.net/base/skiing-trip/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 21:05:33 +0000</pubDate>
		<dc:creator>Itkovian</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[elias]]></category>
		<category><![CDATA[nathan]]></category>
		<category><![CDATA[ski]]></category>
		<category><![CDATA[trip]]></category>
		<category><![CDATA[zell am see]]></category>

		<guid isPermaLink="false">http://www.itkovian.net/base/?p=235</guid>
		<description><![CDATA[Like last year, we again stayed in Zell am See for a week to have some skiing fun. Given that we numbered 12, we rented 3 apartments in the Appartmenthaus Edelweiss, which is located near the edge of the town (on the road to Saalfelden, the second last building). The train had a 1 hour delay, so we arrived in the afternoon, barging into our rooms at around 13:45. The second half of the party was by then deep entrenched in gridlock, due to heavy snowfall and avalanche warnings throughout the area.]]></description>
			<content:encoded><![CDATA[<p>Like last year, we again stayed in Zell am See for a week to have some skiing fun. Given that we numbered 12, we rented 3 apartments in the Appartmenthaus Edelweiss, which is located near the edge of the town (on the road to Saalfelden, the second last building). The train had a 1 hour delay, so we arrived in the afternoon, barging into our rooms at around 13:45. The second half of the party was by then deep entrenched in gridlock, due to heavy snowfall and avalanche warnings throughout the area. This year, no accidents happened on the train (hot chocolate was kept in either the cup or swallowed down in a proper manner), although some idiot barely missed our ride when he decided to say hi to a riding train from very close (he ended up under the next train &#8212; lucky for us, otherwise we would have to wait at least 3 hours in Brussels). Nathan took the train ride very serious:</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3318828174/" title="Serious by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3466/3318828174_052371fce1.jpg" width="500" height="339" alt="Serious" /></a>
</div>
<p>Deciding to go with the shop recommend by the apartment owners, we set out to go rent some equipment &#8212; which turned out to be subpar to last years, which we got at the Intersport shop, at a similar price, if memory serves well (it usually does not). We were driven over the by the shop owner, yet we had to return on foot, as the other friendly folks who took the ride with us, kindly forgot to remember we were still at the shop when they were brought back. A minor setback, I thought, taking the opportunity to go fetch ski passes. Without any success, as I did not have Elias passport with me. Dang. Back to the apartment, and then on a quick run back to the closest lift for buying passes.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3318859730/" title="Two. by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3312/3318859730_3e34683a44.jpg" width="333" height="500" alt="Two." /></a>
</div>
<p>This year, we enrolled Elias in the ski school; this time starting at the top of the CityXpress lift, rather than going to Schuttdorf. This mean he had to take the CityXpress lift to get to the school, rather than get on a ski bus. Which was way more cool for him. He did remarkably well, shifting groups three times, each time moving on to a better group, or rather different teacher for more advanced skiing craziness. The first two days, he stayed at the Kindergarten site, where he was trained in ploughing to stop and make turns on a very gentle (read: flat) slope. It also allowed him to get back up this slope using the automated floor matt.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319854534/" title="DSC09379 by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3404/3319854534_7c9b91efa2.jpg" width="500" height="375" alt="DSC09379" /></a>
</div>
<p>Of course, there also was the obligatory fun in the snow with Lize, his niece.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319857410/" title="DSC09383 by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3453/3319857410_8d50eebb82.jpg" width="500" height="375" alt="DSC09383" /></a>
</div>
<p>On Tuesdays, he was shifted with several other children to form a group that was allowed on a bit steeper slope, where they had to climb back up themselves using a rope to stay upright and make it more likely the ascent would succeed without meeting the surface face down. There he further practiced making turns, gently skiing around sticks planted in the snow and to stop at the bottom of the rope.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319040915/" title="DSC09403 by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3635/3319040915_07e18c1863.jpg" width="500" height="375" alt="DSC09403" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319907802/" title="Up up up! by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3372/3319907802_ab9c69aea1.jpg" width="500" height="375" alt="Up up up!" /></a>
</div>
<p> The fourth day, he again had a different teacher, who taught them the intricacies of turning and sent back on kid who did not seem to understand the concept of shifting weight to a single leg and putting pressure there to make a turn (the poor fellar was Russian (I guess), and so he might have had a lot of difficulties understanding either English, Dutch or German). This was the only day with a clear sky and lots of sun, and we had lunch outside.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319073469/" title="Good spot. Two pretty Dutch chicks in the immediate vicinity. by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3389/3319073469_6546f2d046.jpg" width="500" height="375" alt="Good spot. Two pretty Dutch chicks in the immediate vicinity." /></a>
</div>
<p>In the afternoon, they moved with 6 kids to a real slope, with a real (albeit very irritating (for adults)) lift. After classes we did a few extra practice runs, so Elias would be well prepared for the race on Thursday. It turned out that his race was scheduled immediately after the daily warmup dance.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319864494/" title="DSC09398 by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3532/3319864494_799c55d181.jpg" width="500" height="375" alt="DSC09398" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319934328/" title="Real men (and women) carry their own skis. by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3428/3319934328_9fb2defbe3.jpg" width="500" height="375" alt="Real men (and women) carry their own skis." /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319118671/" title="Nihat with Elias. by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3486/3319118671_5c545ee460.jpg" width="500" height="375" alt="Nihat with Elias." /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319946382/" title="Proudness :-) by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3331/3319946382_f055a014ba.jpg" width="500" height="375" alt="Proudness :-)" /></a>
</div>
<p>And he did <i>very</i> well! Two kids (Elias and Holly) managed to make all the turns in the right way around the right flags, whereas the others &#8212; understandably, since they wanted to go fast &#8212; chose to ignore either flags or turns or went around the wrong side, thus helping them finish quicker (no penalty seconds were awarded <img src='http://www.itkovian.net/base/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Elias got down in about 28 seconds. The real bonus of the day was when his teacher told us we could take him up the blue slope with the chairs lift. And so our skiing week ended in success! On Friday, in quite bad weather, we went up and took Elias down a blue slope, where he did very well. He fell down four or five times, and we skied for about 35 to 40 minutes.</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319950268/" title="Prepared by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3576/3319950268_ba7454da4c.jpg" width="480" height="500" alt="Prepared" /></a>
</div>
<p>In the locker room, we ran into Holly:</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319126691/" title="Elias and Holly by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3625/3319126691_8120868334.jpg" width="500" height="375" alt="Elias and Holly" /></a>
</div>
<p> Due to the snowfall, there were already numerous small bumps, and 10 cm of fresh white powder. So we took it slowly, making sure he enjoyed himself. After lunch, I decided to go down another blue slope to finish the day. Halfway, he got a bit fed up with falling down, so it took us a bit longer than expected. But in the end, all was well (I did help him on the last part, as the slope was blue/black there, so a bit steeper than he was used to).</p>
<p>The last day, we checked out the town once more, buying some gifts and stuff for Elias and Nathan. I had planned on purchasing a pocket knife, but that money will now be spent on Munchkin Quest <img src='http://www.itkovian.net/base/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3318313409/" title="Sleeping by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3386/3318313409_111c2a8e65.jpg" width="500" height="348" alt="Sleeping" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319192734/" title="Nathan finally on snow :-) by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3049/3319192734_3502e2b8a7.jpg" width="367" height="500" alt="Nathan finally on snow :-)" /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3318377937/" title="Drooling ... by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3476/3318377937_7df7050378.jpg" width="500" height="353" alt="Drooling ..." /></a>
</div>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3318323269/" title="Posing by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3591/3318323269_b349b95324.jpg" width="500" height="333" alt="Posing" /></a>
</div>
<p>Riding back, we had to check out the news we missed:</p>
<div class="figure">
<a href="http://www.flickr.com/photos/itkovian/3319793826/" title="News by Itkovian, on Flickr"><img src="http://farm4.static.flickr.com/3560/3319793826_fb09cc39fd.jpg" width="333" height="500" alt="News" /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.itkovian.net/base/skiing-trip/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

