<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ParallelHashList was updated to version 1.31 ... in Intel® Moderncode for Parallel Architectures</title>
    <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820270#M1242</link>
    <description>&lt;BR /&gt;&lt;BR /&gt;Hello&lt;BR /&gt;&lt;BR /&gt;You can use the parallel Iterate() method of parallelhashlist&lt;BR /&gt;when also you want to do a sort by keys, but don't forget&lt;BR /&gt;to use my other parallelsort library to sort in parallel your array&lt;BR /&gt;that you have to fill from inside theTIterateFunc callback..&lt;BR /&gt;&lt;BR /&gt;You can download my parallelsort library from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://pages.videotron.com/aminer/"&gt;http://pages.videotron.com/aminer/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Amine Moulay Ramdane.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 18 May 2012 23:27:06 GMT</pubDate>
    <dc:creator>aminer10</dc:creator>
    <dc:date>2012-05-18T23:27:06Z</dc:date>
    <item>
      <title>ParallelHashList was updated to version 1.31 ...</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820269#M1241</link>
      <description>&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In my previous version of ParallelHashList even if i have used&lt;BR /&gt;lock striping , synchronizing access to the counter that computes&lt;BR /&gt;the number of entries in the hashtable was reintroducing the scalability&lt;BR /&gt;problem of exclusive locking, this counter was called a hot field because&lt;BR /&gt;every mutative operation needs to access it. In version 1.31, &lt;BR /&gt;parallelhashlist&lt;BR /&gt;maintains an independant counter , that counts the number&lt;BR /&gt;of entries , for each segment of the hashtable and it uses a lock&lt;BR /&gt;for each counter and this is better for scalability. also i have changed&lt;BR /&gt;parallelhashlist to use only 100 lightweight MREWs &lt;BR /&gt;(multiple-readers -exclusive-writer)&lt;BR /&gt;this will lower the memory consumption and this allows multiple threads&lt;BR /&gt;to write and read concurently. I am using lock striping with&lt;BR /&gt;100 lightweight MREWs (multiple-readers -exclusive-writer) and&lt;BR /&gt;this allows up to 100 parallel writes, but this upper bound on&lt;BR /&gt;parallel writes will not affect parallel reads, so this will give a good&lt;BR /&gt;performance and a good scalability .&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Description:&lt;BR /&gt;&lt;BR /&gt;A parallel HashList with O(1) best case and O(log(n)) worst case&lt;BR /&gt;access that uses lock striping and 100 lightweight MREWs&lt;BR /&gt;(multiple-readers -exclusive-writer) , this allows multiple threads&lt;BR /&gt;to write and read concurently. I am using lock striping with&lt;BR /&gt;100 lightweight MREWs (multiple-readers -exclusive-writer) and&lt;BR /&gt;this allows up to 100 parallel writes, but this upper bound on&lt;BR /&gt;parallel writes will not affect parallel reads, also parallelhashlist&lt;BR /&gt;maintains an independant counter , that counts the number of&lt;BR /&gt;entries , for each segment of the hashtable and uses a lock for&lt;BR /&gt;each counter, this also for better scalability.&lt;BR /&gt;&lt;BR /&gt;You can download parallelhashlist version 1.31 from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://pages.videotron.com/aminer/"&gt;http://pages.videotron.com/aminer/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Language: FPC Pascal v2.2.0+ / Delphi 5+: &lt;A href="http://www.freepascal.org/"&gt;http://www.freepascal.org/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Operating Systems: Win , Linux and Mac (x86).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and please take a look at the benchmarks here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://pages.videotron.com/aminer/parallelhashlist/queue.htm"&gt;http://pages.videotron.com/aminer/parallelhashlist/queue.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Note: When i have done those benchmarks , there was not enough/much items&lt;BR /&gt;organized as a self-balancing tree in the individual chains of the&lt;BR /&gt;hashtable, so , almost all the items was found and inserted in O(1) , so&lt;BR /&gt;the parallel part in the Amdahl equation was not much bigger compared&lt;BR /&gt;to to the serial part. But you will notice in pratice that as soon as you &lt;BR /&gt;will have&lt;BR /&gt;more items on the chains of the Hashtable, organized as self-balancing tree,&lt;BR /&gt;with a worst case log(n) , the parallel part will become bigger in the &lt;BR /&gt;Amdahl&lt;BR /&gt;equation and you will have better performance and scalability than the &lt;BR /&gt;numbers&lt;BR /&gt;in the graph of the benchmarks&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;Amine Moulay Ramdane.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 May 2012 23:25:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820269#M1241</guid>
      <dc:creator>aminer10</dc:creator>
      <dc:date>2012-05-18T23:25:01Z</dc:date>
    </item>
    <item>
      <title>ParallelHashList was updated to version 1.31 ...</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820270#M1242</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Hello&lt;BR /&gt;&lt;BR /&gt;You can use the parallel Iterate() method of parallelhashlist&lt;BR /&gt;when also you want to do a sort by keys, but don't forget&lt;BR /&gt;to use my other parallelsort library to sort in parallel your array&lt;BR /&gt;that you have to fill from inside theTIterateFunc callback..&lt;BR /&gt;&lt;BR /&gt;You can download my parallelsort library from:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://pages.videotron.com/aminer/"&gt;http://pages.videotron.com/aminer/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Amine Moulay Ramdane.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 May 2012 23:27:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820270#M1242</guid>
      <dc:creator>aminer10</dc:creator>
      <dc:date>2012-05-18T23:27:06Z</dc:date>
    </item>
    <item>
      <title>ParallelHashList was updated to version 1.31 ...</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820271#M1243</link>
      <description>&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: Arial;"&gt;&lt;STRONG&gt;&lt;BR /&gt;I wrote about parallelhashlist this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"Note:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Arial;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; When i have done those benchmarks , there was not enough/much items organized as a self-balancing tree in the individual chains of the hashtable, so , almost all the items was found and inserted in O(1) , so the parallel part in the Amdahl equation was not much bigger compared to to the serial part. But you will notice in pratice that as soon as you will have more items on the chains of the Hash table , organized as self-balancing tree, with a worst case log(n) , the parallel part will become bigger in the Amdahl equation and you will have better performance and scalability than the numbers in the graph of the benchmarks ... "&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 20 May 2012 14:51:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820271#M1243</guid>
      <dc:creator>aminer10</dc:creator>
      <dc:date>2012-05-20T14:51:40Z</dc:date>
    </item>
    <item>
      <title>ParallelHashList was updated to version 1.31 ...</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820272#M1244</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;I wrote about parallelhashlist this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;"Note: When i have done those benchmarks , there was not enough/much items organized as a self-balancing tree in the individual chains of the hashtable, so , almost all the items was found and inserted in O(1) , so the parallel part in the Amdahl equation was not much bigger compared to to the serial part. But you will notice in pratice that as soon as you will have more items on the chains of the Hash table , organized as self-balancing tree, with a worst case log(n) , the parallel part will become bigger in the Amdahl equation and you will have better performance and scalability than the numbers in the graph of the benchmarks ... "&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cause you can increase p by doing more of the same: Increase the volume of data processed by the P part (and therefore the percentage p of time spent in computing). This is Gustafson's Law. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Amine Moulay Ramdane.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 20 May 2012 14:53:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820272#M1244</guid>
      <dc:creator>aminer10</dc:creator>
      <dc:date>2012-05-20T14:53:31Z</dc:date>
    </item>
    <item>
      <title>ParallelHashList was updated to version 1.31 ...</title>
      <link>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820273#M1245</link>
      <description>&lt;P&gt;Microsoft Office 2010 is actually the newest software from microsoft office 2010 keys Microsoft Corporation introduced in the last year. Its leading aims tend to be to catch the present business requirements and to be on top of every competition with regard to the international market criteria. This can be a very good idea to obtain Microsoft Office 2010 Key immediately to maintain norton antivirus keys yourself up-to-date and to present you with the vast qualified progress opportunities for success. Microsoft Office 2010 is available in both 32-bit and 64-bit editions, but attention please the two are not able to co-exist on the very same personal computer. All of the Office 2010 editions are kaspersky antivirus keys suitable for Windows XP SP3, Windows Vista and Windows 7.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/www.keyyeah.com" target="_blank"&gt;www.keyyeah.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2012 08:12:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Moderncode-for-Parallel/ParallelHashList-was-updated-to-version-1-31/m-p/820273#M1245</guid>
      <dc:creator>tomorrowwillbefine</dc:creator>
      <dc:date>2012-05-28T08:12:00Z</dc:date>
    </item>
  </channel>
</rss>

