<?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 Sobol initialisation with direction numbers + primitive polynom in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784549#M1698</link>
    <description>&lt;P&gt;Oleg, let me give you a more detailed explanation. &lt;/P&gt;&lt;P&gt;1. SOBOL QRNG is implemented so that if params array is incorrectly filled the default implementation with dimension 1 will be used.&lt;/P&gt;&lt;P&gt;2. soboluserdirnums.f example shows how to initialize SOBOL QRNG with a complete direction numbers table. If you'd like you provide the generator with both initial direction numbers and primitive polynomials youll need to slightly change params array filling like this:&lt;/P&gt;&lt;P&gt; params(1) = dm1&lt;BR /&gt; params(2) = VSL_USER_QRNG_INITIAL_VALUES&lt;BR /&gt; params(3) = IOR(VSL_USER_INIT_DIRECTION_NUMBERS, &amp;amp;&lt;BR /&gt;&amp;amp; VSL_USER_PRIMITIVE_POLYMS)&lt;BR /&gt; params(3) = IOR(params(3), VSL_QRNG_OVERRIDE_1ST_DIM_INIT)&lt;BR /&gt;&lt;BR /&gt; do i = 1, dm1&lt;BR /&gt; params(i+3) = poly(i)&lt;BR /&gt; end do &lt;BR /&gt; params(4 + dm1) = maxdeg&lt;BR /&gt; k = 5 + dm1&lt;BR /&gt; do i=1,dm1&lt;BR /&gt; do j=1,maxdeg&lt;BR /&gt; params(k) = vinit(i,j)&lt;BR /&gt;  k = k + 1&lt;BR /&gt; end do&lt;BR /&gt; end do&lt;BR /&gt; nparams = 4 + dm1 + dm1*maxdeg&lt;/P&gt;</description>
    <pubDate>Wed, 30 Nov 2011 08:42:38 GMT</pubDate>
    <dc:creator>Dmitry_Petukhov__Int</dc:creator>
    <dc:date>2011-11-30T08:42:38Z</dc:date>
    <item>
      <title>Sobol initialisation with direction numbers + primitive polynomials in fortran fails</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784547#M1696</link>
      <description>Dear experts,&lt;BR /&gt;&lt;BR /&gt;could someone provide me with a working example for the initialisation of the sobol generator with both direction numbers and primitive polynomials in FORTRAN? &lt;BR /&gt;&lt;BR /&gt;I am trying to use the dir. numbers and primitive polynomials from &lt;BR /&gt; &lt;A href="http://web.maths.unsw.edu.au/~fkuo/sobol/new-joe-kuo-6.21201" target="_blank"&gt;http://web.maths.unsw.edu.au/~fkuo/sobol/new-joe-kuo-6.21201&lt;/A&gt;&lt;BR /&gt;by following the instructions&lt;BR /&gt; &lt;A href="http://software.intel.com/sites/products/documentation/hpc/mkl/vslnotes/8_4_9_SOBOL.htm" target="_blank"&gt;http://software.intel.com/sites/products/documentation/hpc/mkl/vslnotes/8_4_9_SOBOL.htm&lt;/A&gt;&lt;BR /&gt;but the random number sequence is the same no matter which direction numbers and prim. polynomials I use. Strangely enough, I don't get any error message about any problems during initialisation!&lt;BR /&gt;&lt;BR /&gt;I am using a MKL version which came with fortran composer 2011.3.174.&lt;BR /&gt;&lt;BR /&gt;Feedback is much appreciated.&lt;BR /&gt;&lt;BR /&gt; Oleg&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Nov 2011 17:15:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784547#M1696</guid>
      <dc:creator>obrandt</dc:creator>
      <dc:date>2011-11-29T17:15:11Z</dc:date>
    </item>
    <item>
      <title>Sobol initialisation with direction numbers + primitive polynom</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784548#M1697</link>
      <description>Oleg,may be this example: " mrlroot\examples\vslf\source\osoboluserdirnums.f" will help you?&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 30 Nov 2011 05:36:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784548#M1697</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2011-11-30T05:36:40Z</dc:date>
    </item>
    <item>
      <title>Sobol initialisation with direction numbers + primitive polynom</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784549#M1698</link>
      <description>&lt;P&gt;Oleg, let me give you a more detailed explanation. &lt;/P&gt;&lt;P&gt;1. SOBOL QRNG is implemented so that if params array is incorrectly filled the default implementation with dimension 1 will be used.&lt;/P&gt;&lt;P&gt;2. soboluserdirnums.f example shows how to initialize SOBOL QRNG with a complete direction numbers table. If you'd like you provide the generator with both initial direction numbers and primitive polynomials youll need to slightly change params array filling like this:&lt;/P&gt;&lt;P&gt; params(1) = dm1&lt;BR /&gt; params(2) = VSL_USER_QRNG_INITIAL_VALUES&lt;BR /&gt; params(3) = IOR(VSL_USER_INIT_DIRECTION_NUMBERS, &amp;amp;&lt;BR /&gt;&amp;amp; VSL_USER_PRIMITIVE_POLYMS)&lt;BR /&gt; params(3) = IOR(params(3), VSL_QRNG_OVERRIDE_1ST_DIM_INIT)&lt;BR /&gt;&lt;BR /&gt; do i = 1, dm1&lt;BR /&gt; params(i+3) = poly(i)&lt;BR /&gt; end do &lt;BR /&gt; params(4 + dm1) = maxdeg&lt;BR /&gt; k = 5 + dm1&lt;BR /&gt; do i=1,dm1&lt;BR /&gt; do j=1,maxdeg&lt;BR /&gt; params(k) = vinit(i,j)&lt;BR /&gt;  k = k + 1&lt;BR /&gt; end do&lt;BR /&gt; end do&lt;BR /&gt; nparams = 4 + dm1 + dm1*maxdeg&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2011 08:42:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784549#M1698</guid>
      <dc:creator>Dmitry_Petukhov__Int</dc:creator>
      <dc:date>2011-11-30T08:42:38Z</dc:date>
    </item>
    <item>
      <title>Sobol initialisation with direction numbers + primitive polynom</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784550#M1699</link>
      <description>I did not know about this example!&lt;BR /&gt;sorry for not getting back to you earlier -- the autumn cold got me.</description>
      <pubDate>Wed, 30 Nov 2011 17:10:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784550#M1699</guid>
      <dc:creator>obrandt</dc:creator>
      <dc:date>2011-11-30T17:10:46Z</dc:date>
    </item>
    <item>
      <title>Sobol initialisation with direction numbers + primitive polynom</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784551#M1700</link>
      <description>Hi Dmitri,&lt;BR /&gt;thanks a lot for your more detailed explanation. At first glance it looks similar to my code, but I will have a close look once I'm back to work -- the autumn cold got me.&lt;BR /&gt;Best,&lt;BR /&gt; Oleg</description>
      <pubDate>Wed, 30 Nov 2011 17:14:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Sobol-initialisation-with-direction-numbers-primitive/m-p/784551#M1700</guid>
      <dc:creator>obrandt</dc:creator>
      <dc:date>2011-11-30T17:14:26Z</dc:date>
    </item>
  </channel>
</rss>

