<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'help regarding threads' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'help regarding threads' posted on the 'C and C++' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 25 May 2013 14:54:56 -0700</pubDate>
    <lastBuildDate>Sat, 25 May 2013 14:54:56 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>help regarding threads</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/382993/382993/help-regarding-threads/</link>
      <description>hi...i have a problem with threads.actually wat i have been asked to do in the assignment is to make a 3x3 matrix multiplication program in c++ , and show that the every result of the resultant matrix is obtained from a thread..in actual we dont have to implement the problem using actual threads but just to give a simulation of threads...please can anyone suggest me something on how to do this assignment......??&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/382993/382993/help-regarding-threads/</guid>
      <pubDate>Sun, 14 Dec 2008 01:24:31 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: help regarding threads</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/382993/383004/re-help-regarding-threads/#383004</link>
      <description>You can't really simulate threads in a good way... you would have to run a function for each calculation, but the execution would still be linear.&lt;br /&gt;
&lt;br /&gt;
I'd suggest you get x number of 3x3 matrices from somewhere (user input, file etc), then start a calculation for each one of them, then display the result in the main thread.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/382993/383004/re-help-regarding-threads/#383004</guid>
      <pubDate>Sun, 14 Dec 2008 10:06:38 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: help regarding threads</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/382993/383028/re-help-regarding-threads/#383028</link>
      <description>: You can't really simulate threads in a good way... you would have to &lt;br /&gt;
: run a function for each calculation, but the execution would still &lt;br /&gt;
: be linear.&lt;br /&gt;
: &lt;br /&gt;
: I'd suggest you get x number of 3x3 matrices from somewhere (user &lt;br /&gt;
: input, file etc), then start a calculation for each one of them, &lt;br /&gt;
: then display the result in the main thread.&lt;br /&gt;
: &lt;br /&gt;
: ok..Thanks...can u suggest me an algo if i really have to implement it with threads...&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/382993/383028/re-help-regarding-threads/#383028</guid>
      <pubDate>Mon, 15 Dec 2008 00:30:31 -0700</pubDate>
      <category>C and C++</category>
    </item>
    <item>
      <title>Re: help regarding threads</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/382993/383049/re-help-regarding-threads/#383049</link>
      <description>Just start the threads in a loop and pass the matrix as parameter to the thread function. You shouldn't even need to use mutices/semaphores as the main program shouldn't touch the matrix(es) once it is passed to the threads.&lt;br /&gt;
&lt;br /&gt;
As for matrix multiplication, I would have to look it up. It has been a while since I studied that. &lt;img src="http://www.programmersheaven.com/images/Community/smile.gif" width="15" height="15" alt="" /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/382993/383049/re-help-regarding-threads/#383049</guid>
      <pubDate>Mon, 15 Dec 2008 05:29:53 -0700</pubDate>
      <category>C and C++</category>
    </item>
  </channel>
</rss>