<?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 BLAS 1 Multithread in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781779#M1519</link>
    <description>&lt;DIV id="_mcePaste"&gt;quote:"&lt;SPAN style="color: #333333; line-height: 15px;"&gt;I think there should be any difference for multithreading ?&lt;/SPAN&gt;"&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;there is no difference between ddot and cblas_ddot from multithreading point of view.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;these are different API only for the same functionality.&lt;/DIV&gt;--Gennady</description>
    <pubDate>Wed, 14 Jul 2010 12:26:57 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2010-07-14T12:26:57Z</dc:date>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781775#M1515</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;It's possible to have BLAS 1 multithreaded functions (such ddot) with MKL ?. I tried with the MKL 10.2 in order to multithread "liblinear" but without success.... Do I need /Qopenmp flag ? (I am working on win32 &amp;amp; win64 plateforms with C2D or I7mobile)...&lt;BR /&gt;&lt;BR /&gt;If someone have a small example ...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Sbastien</description>
      <pubDate>Mon, 12 Jul 2010 09:26:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781775#M1515</guid>
      <dc:creator>sebydocky</dc:creator>
      <dc:date>2010-07-12T09:26:54Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781776#M1516</link>
      <description>Sbastien,&lt;DIV&gt;- yes, this routine is threaded. Please see the info about that into User's Guide, chapter 6.&lt;/DIV&gt;&lt;DIV&gt;- yes, the examples of this routines are available: you can find these examples in &lt;MKL_ROOT&gt;\blas\source\ ddotx.f&lt;/MKL_ROOT&gt;&lt;/DIV&gt;&lt;DIV&gt;or&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;MKL_ROOT&gt;\examples\cblas\source\
cblas_ddotx.c&lt;/MKL_ROOT&gt;&lt;/P&gt;&lt;P&gt;- you don't need to use /Qopenmp flag to compile. Please link threading libraries. Please look &lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;here &lt;/A&gt;to find out the recommended libraries.&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 12 Jul 2010 12:27:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781776#M1516</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-12T12:27:33Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781777#M1517</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;In the cblas_ddotx.c, ddot call is done by cblas_ddot. In liblinear, it's using directly ddot function. I think there should be any difference for multithreading ?.&lt;BR /&gt;&lt;BR /&gt;I link versus mkl_core.lib, mkl_intel_c.lib and mkl_intel_thread.lib&lt;BR /&gt;&lt;BR /&gt;Sbastien</description>
      <pubDate>Mon, 12 Jul 2010 14:59:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781777#M1517</guid>
      <dc:creator>sebydocky</dc:creator>
      <dc:date>2010-07-12T14:59:40Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781778#M1518</link>
      <description>&lt;BR /&gt;Well .... as indicated I have to add /Qopenmp flag and on my C2D, now, the 2 core are used.. However the difference between sequential or multithreaded are small ...&lt;BR /&gt;&lt;BR /&gt;With multi-theadings&lt;BR /&gt;&lt;BR /&gt;mex -D_DENSE_REP -DBLAS -f mexopts_intel10.bat -output train_dense.dll train_dense.c linear_model_matlab.c linear.cpp tron.cpp "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_core.lib" "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_intel_c.lib" "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_intel_thread.lib"&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;tic, model{t} = train_dense(ytopic' , X , options , 'col');,toc&lt;/P&gt;&lt;P&gt;Elapsed time is 5.696018 seconds.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and without ...&lt;BR /&gt;&lt;BR /&gt;mex -D_DENSE_REP -DBLAS -f mexopts_intel10.bat -output train_dense.dll train_dense.c linear_model_matlab.c linear.cpp tron.cpp "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_core.lib" "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_intel_c.lib" "C:\Program Files\Intel\Compiler\11.1\065\mkl\ia32\lib\mkl_sequential.lib"&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;tic, model{t} = train_dense(ytopic' , X , options , 'col');,toc&lt;/P&gt;&lt;P&gt;Elapsed time is 5.643861 seconds.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;where X is a (10240 x 3588) double precision matrix.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Sbastien&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2010 16:13:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781778#M1518</guid>
      <dc:creator>sebydocky</dc:creator>
      <dc:date>2010-07-12T16:13:52Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781779#M1519</link>
      <description>&lt;DIV id="_mcePaste"&gt;quote:"&lt;SPAN style="color: #333333; line-height: 15px;"&gt;I think there should be any difference for multithreading ?&lt;/SPAN&gt;"&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;there is no difference between ddot and cblas_ddot from multithreading point of view.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;these are different API only for the same functionality.&lt;/DIV&gt;--Gennady</description>
      <pubDate>Wed, 14 Jul 2010 12:26:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781779#M1519</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-14T12:26:57Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781780#M1520</link>
      <description>&lt;DIV&gt;Sbastien,&lt;/DIV&gt;&lt;DIV&gt;I don't see the threading library ( libiomp5md.lib)into the linking line you are using.&lt;/DIV&gt;&lt;DIV&gt;I don't understand, you mentioned thatX is a (10240 x 3588) double precision matrix.&lt;/DIV&gt;&lt;DIV&gt;What is the real number of elements of vectors in your experiments?&lt;/DIV&gt;&lt;DIV&gt;Could you provide more details about CPU you are working?&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Wed, 14 Jul 2010 12:43:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781780#M1520</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-14T12:43:13Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781781#M1521</link>
      <description>Gennady,&lt;BR /&gt;&lt;BR /&gt;Yes I don't have any error without libiomp5md.lib during linking. It's important ?&lt;BR /&gt;&lt;BR /&gt;liblinear use more particulary BLAS1 function with vector's dimension equal to 10240 in my given example.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First test system&lt;BR /&gt;C2D T7500, XP SP3 32, Intel compiler 10.1.13&lt;BR /&gt;&lt;BR /&gt;Second system&lt;BR /&gt;&lt;BR /&gt;I7m 720, W7 64, Intel compiler 11.165. &lt;BR /&gt;&lt;BR /&gt;For this later, multithreaded is not working ... even by setting MKL_NUM_THREADS &amp;amp; OMP_NUM_THREADS variables.</description>
      <pubDate>Sat, 17 Jul 2010 16:06:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781781#M1521</guid>
      <dc:creator>sebydocky</dc:creator>
      <dc:date>2010-07-17T16:06:32Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781782#M1522</link>
      <description>Dear Gennady,&lt;BR /&gt;&lt;BR /&gt;Your link to guide the set up link libraries is very useful. However, I am confused about the item "select cluster library". What's the difference between BLACS and ScaLAPACK? To let the BLAS functions have best speed up under multiple CPUs and multiple cores, which functions should I select?&lt;BR /&gt;&lt;BR /&gt;The environment of my program is:&lt;BR /&gt;Win7 x64 + VS2008 + IVF 11.1.065 + Intel MPI&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Zhanghong Tang</description>
      <pubDate>Tue, 20 Jul 2010 03:34:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781782#M1522</guid>
      <dc:creator>Zhanghong_T_</dc:creator>
      <dc:date>2010-07-20T03:34:28Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781783#M1523</link>
      <description>I also tried to enable multithreading in Matlab's MEX files however, it does not seem to work.&lt;BR /&gt;&lt;BR /&gt;In fact those MEX files are regular shared libraries (.DLL or .SO) with a different name. &lt;BR /&gt;Hence, I am not sure that usual ways of enabling multiple threads will work is a shared library. I suppose it is related to the threads of the main program or something like this.&lt;BR /&gt;&lt;BR /&gt;Can anyone clarify the situation or give a link to appropriate readings.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.</description>
      <pubDate>Tue, 20 Jul 2010 12:37:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781783#M1523</guid>
      <dc:creator>eliosh</dc:creator>
      <dc:date>2010-07-20T12:37:01Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781784#M1524</link>
      <description>Sbastien,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I don't understand which MKL version you are using?&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10.8333px;"&gt;Fact is that, we are releasing MKL either standalone or bundled with Intel Fortran Compiler versions.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10.8333px;"&gt;- if you are using standalone version, then look at the mklsupport.txt file (&lt;ROOT&gt;/doc/mklsupport.txt) and you can see smth like:Package ID: w_mkl_p_10.2.5.035.&lt;/ROOT&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;- with the bundled with IVF version - please see &lt;A href="http://software.intel.com/en-us/articles/which-version-of-ipp--mkl--tbb-is-installed-with-intel-compiler-professional-edition/"&gt;this KB&lt;/A&gt; where you can find which version of MKL is bundled with this version of compiler.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:07:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781784#M1524</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-21T13:07:30Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781785#M1525</link>
      <description>HiZhanghong Tang,&lt;DIV&gt;&lt;SPAN style="font-size: 10.8333px;"&gt;I think it would be better if you, first of all, will read the MKL Reference Manual regarding BLACS routine description. If you will have further questions,then we will try to help.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;&amp;gt;&amp;gt; To let the BLAS functions have best speed up under multiple CPUs and multiple cores, which functions should I select?&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;The biggest part of BLAS 1,2 and 3 levels routines ( density storage scheme ) are threaded and show very good scalablity results.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Which MKL's routines are you going to use?&lt;/DIV&gt;&lt;SPAN style="font-size: 10.8333px;"&gt;--Gennady&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:40:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781785#M1525</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-21T13:40:01Z</dc:date>
    </item>
    <item>
      <title>BLAS 1 Multithread</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781786#M1526</link>
      <description>&lt;BR /&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;it may depends on such factors like:&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;MKL version which is used in your version of Matlab? ask Mathworks about that.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;functionality..&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;the input size..&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Jul 2010 13:47:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/BLAS-1-Multithread/m-p/781786#M1526</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-07-21T13:47:17Z</dc:date>
    </item>
  </channel>
</rss>

