<?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 [ Screenshot 3 - OMP Errors: in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980670#M17439</link>
    <description>&lt;STRONG&gt;[ Screenshot 3 - OMP Errors: 136, 1455 and 178 ]&lt;/STRONG&gt;

&lt;span class="lia-inline-image-display-wrapper" image-alt="pagingfiletoosmall.jpg"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/10126i9CBB104014CCE589/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="pagingfiletoosmall.jpg" alt="pagingfiletoosmall.jpg" /&gt;&lt;/span&gt;</description>
    <pubDate>Mon, 24 Jun 2013 11:46:36 GMT</pubDate>
    <dc:creator>SergeyKostrov</dc:creator>
    <dc:date>2013-06-24T11:46:36Z</dc:date>
    <item>
      <title>Benchmarking MKL Lapack on ccNUMA systen</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980637#M17406</link>
      <description>&lt;P&gt;I work with a large ccNUMA SGI Altix system. One of our users is trying to benchmark some LAPACK routines on our system and is getting some disappointing scaling - stops scaling after 4 threads.&lt;/P&gt;
&lt;P&gt;The test I am running is of diagonalizing a 4097x4097 matrix of double precision floats. It uses the routine DSYEV.&lt;/P&gt;
&lt;P&gt;From analysing the hotspots in VTune, I find that almost all the time is spent in overhead and spin time from the functions:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;[OpenMP dispatcher]&amp;lt;- pthread_create_child&lt;/EM&gt; and in &lt;EM&gt;[OpenMP fork].&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;The code was compiled using ifort with the options:&lt;EM&gt; -O3 -openmp -g -traceback -xHost -align -ansi-alias -mkl=parallel&lt;/EM&gt;.&amp;nbsp; Using version 13.1.0.146 of the compiler and version 11 of MKL. The system is made up of 8 core Xeon sandy bridge sockets.&lt;/P&gt;
&lt;P&gt;The code was ran with the envars:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;OMP_NUM_THREADS=16&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;MKL_NUM_THREADS=16&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;KMP_STACKSIZE=2gb&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;OMP_NESTED=FALSE&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;MKL_DYNAMIC=FALSE&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;KMP_LIBRARY=turnaround&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;KMP_AFFINITY=disabled&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;It is also ran with the SGI command for NUMA systems '&lt;EM&gt;dplace -x2'&lt;/EM&gt; which locks the threads to their cores.&lt;/P&gt;
&lt;P&gt;So I suspect that there is something up with the options for the MKL, or the library isn't configured properly for our system. I have attached the code used.&lt;/P&gt;
&lt;P&gt;Does anybody have any ideas on this?&lt;/P&gt;
&lt;P&gt;Jim&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2013 13:15:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980637#M17406</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-04T13:15:48Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...One of our users is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980638#M17407</link>
      <description>&amp;gt;&amp;gt;...One of our users is trying to benchmark some LAPACK routines on our system and is getting some disappointing
&amp;gt;&amp;gt;scaling - &lt;STRONG&gt;stops scaling after 4 threads&lt;/STRONG&gt;.
&amp;gt;&amp;gt;
&amp;gt;&amp;gt;The test I am running is of diagonalizing a &lt;STRONG&gt;4097x4097 matrix&lt;/STRONG&gt; of double precision floats. It uses the routine DSYEV...

It seems to me that a little performance advantage could be achieved for a 4097x4097 matrix ( I would rate it as small ). Here are two questions:

- Why 4097x4097 and not 4096x4096?
- Did you try larger matrix sizes, like 16Kx16K, 32Kx32K, and so on?</description>
      <pubDate>Tue, 04 Jun 2013 14:02:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980638#M17407</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-04T14:02:35Z</dc:date>
    </item>
    <item>
      <title>Hello again. Yes the user had</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980639#M17408</link>
      <description>&lt;P&gt;Hello again. Yes the user had tried larger matrices and got similar problems with scaling. When he ran the same code on a different machine and he managed to get it to scale beyond 8 threads for 16kx16k. I reran the code with a 16kx16k sized matrix with 4, 8, and 16 OMP threads on our ccNUMA system. The results of profiling for 4 threads are:&lt;BR /&gt;
	[OpenMP fork]&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1414.601s&amp;nbsp;&amp;nbsp; &amp;nbsp;1414.601s&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	[OpenMP dispatcher]&amp;nbsp;&amp;nbsp; &amp;nbsp; 1165.936s&amp;nbsp;&amp;nbsp; &amp;nbsp;1165.936s&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	[OpenMP worker]&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 153.393s&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; 153.393s&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	lapack_dsyev&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 45.606s&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 0s&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	diag&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.468s&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0s&lt;/P&gt;

&lt;P&gt;Where the first column is CPU time and the second is Overhead and spin time. The results for 8 and 16 threads show a similar trend.&lt;/P&gt;

&lt;P&gt;Nearly all the time is spent idle even for 4 threads. It can't be because there isn't enough work to do, surely?&lt;/P&gt;

&lt;P&gt;So does anyone have any ideas on this?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2013 16:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980639#M17408</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-10T16:19:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...Nearly all the time is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980640#M17409</link>
      <description>&amp;gt;&amp;gt;...Nearly all the time is spent idle even for 4 threads. It can't be because there isn't enough work to do, surely?

I agree that something is wrong and here are another questions:

- How much memory does the system have?
- Could you verify how physical and virtual memory were used during these tests? ( if you're on a Linux system try to use a graphical utility similar to Windows Task Manager )

I'll do a verification of your test codes on my Ivy Bridge system ( see * ) with Intel C++ Compiler XE 13.1.0.149 [ IA-32 &amp;amp; X64 ] ( Update 2 ) and MKL version 11.0.3.

( * ) - Intel Core i7-3840QM ( Ivy Bridge / 4 cores / 8 logical CPUs / ark.intel.com/compare/70846 )</description>
      <pubDate>Tue, 11 Jun 2013 00:13:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980640#M17409</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-11T00:13:48Z</dc:date>
    </item>
    <item>
      <title>James,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980641#M17410</link>
      <description>James,

I compiled your test case on a Windows 7 Professional 64-bit OS with 64-bit Fortran compiler using the following command line:

ifort.exe /O3 /Qopenmp /QxHost /Qmkl:parallel /Qansi-alias Diag.f90

but execution fails because a &lt;STRONG&gt;matrix.chk&lt;/STRONG&gt; file is &lt;STRONG&gt;Not&lt;/STRONG&gt; found:

..\DiagTestApp&amp;gt;Diag.exe

Read the Hamilton-matrix...
forrtl: severe (29): file not found, unit 11, file ..\DiagTestApp\&lt;STRONG&gt;matrix.chk&lt;/STRONG&gt;

Image              PC                Routine            Line        Source

Diag.exe           00000001400659C7  Unknown               Unknown  Unknown
Diag.exe           0000000140061383  Unknown               Unknown  Unknown
Diag.exe           0000000140034FA6  Unknown               Unknown  Unknown
Diag.exe           000000014001A975  Unknown               Unknown  Unknown
Diag.exe           00000001400195B0  Unknown               Unknown  Unknown
Diag.exe           000000014000B6E9  Unknown               Unknown  Unknown
Diag.exe           0000000140001985  Unknown               Unknown  Unknown
Diag.exe           0000000140001076  Unknown               Unknown  Unknown
Diag.exe           00000001400F814C  Unknown               Unknown  Unknown
Diag.exe           000000014004EC2F  Unknown               Unknown  Unknown
kernel32.dll       0000000076B5652D  Unknown               Unknown  Unknown
ntdll.dll          000000007724C521  Unknown               Unknown  Unknown
...</description>
      <pubDate>Tue, 11 Jun 2013 23:01:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980641#M17410</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-11T23:01:06Z</dc:date>
    </item>
    <item>
      <title>Sorry, that's the input file</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980642#M17411</link>
      <description>&lt;P&gt;Sorry, that's the input file containing the matrix. the 16kx16k one is ~2gb in size so I didn't include it initially. I'll upload it tomorrow when I go back to work apparently we're allowed up to 4gb on here...&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2013 23:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980642#M17411</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-11T23:08:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...Sorry, that's the input</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980643#M17412</link>
      <description>&amp;gt;&amp;gt;...Sorry, that's the input file containing the matrix. the &lt;STRONG&gt;16kx16k&lt;/STRONG&gt; one is &lt;STRONG&gt;~2gb&lt;/STRONG&gt; in size so I didn't include it initially. I'll upload it
&amp;gt;&amp;gt;tomorrow when I go back to work apparently we're allowed up to 4gb on here...

Is there any chance to modify source codes and generate some random values, or some right numbers to get a solution? I think it will be the best solution... Anyway, on my side the application ( initial version ) is ready for testing. My system has 32GB of physical memory and 96GB of Virtual Memory and I think it will be able to handle your test case.</description>
      <pubDate>Tue, 11 Jun 2013 23:29:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980643#M17412</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-11T23:29:10Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980644#M17413</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Sorry for the delay. The users code for generating the matrices is leviathon in complexity and takes forever. However all one needs for dsyev is a real symmetric matrix, so I wrote my own code (attached) that generates a simple 16kx16k Fiedler matrix: A(i,j,) = abs(i-j). This will output a file in unformatted fortran called 'matrix.chk'. Use this as the input file for the other program.&lt;/P&gt;

&lt;P&gt;I can confirm that this also gives the same problems on our system as our users matrix.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2013 09:45:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980644#M17413</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-14T09:45:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...I wrote my own code</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980645#M17414</link>
      <description>&amp;gt;&amp;gt;...I wrote my own code (attached) that generates a simple 16kx16k Fiedler matrix: A(i,j,) = abs(i-j). This will output a file in
&amp;gt;&amp;gt;unformatted fortran called 'matrix.chk'. Use this as the input file for the other program...

I'll let you know results of my tests and thank you for the matrix generation program.</description>
      <pubDate>Fri, 14 Jun 2013 13:10:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980645#M17414</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-14T13:10:00Z</dc:date>
    </item>
    <item>
      <title>Did you manage to get</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980646#M17415</link>
      <description>&lt;P&gt;Did you manage to get anywhere with it?&lt;/P&gt;

&lt;P&gt;J&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 00:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980646#M17415</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-19T00:08:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;&gt;&gt;...One of our users is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980647#M17416</link>
      <description>&amp;gt;&amp;gt;&amp;gt;&amp;gt;...One of our users is trying to benchmark some LAPACK routines on our system and is getting some
&amp;gt;&amp;gt;&amp;gt;&amp;gt;disappointing scaling - stops scaling after 4 threads...
&amp;gt;&amp;gt;
&amp;gt;&amp;gt;Did you manage to get anywhere with it?

Yes and I'll post my results soon.</description>
      <pubDate>Wed, 19 Jun 2013 22:40:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980647#M17416</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T22:40:32Z</dc:date>
    </item>
    <item>
      <title>Could you provide some</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980648#M17417</link>
      <description>Could you provide some technical details about hardware your user is using?</description>
      <pubDate>Wed, 19 Jun 2013 22:43:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980648#M17417</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T22:43:21Z</dc:date>
    </item>
    <item>
      <title>It's a ~200 socket ccNUMA</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980649#M17418</link>
      <description>&lt;P&gt;It's a ~200 socket ccNUMA machine. Each socket is a 8 core Intel Xeon E5-4650L with about 7.5gb RAM per core. You request cores and memory for jobs using the MOAB scheduler.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2013 22:50:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980649#M17418</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-19T22:50:00Z</dc:date>
    </item>
    <item>
      <title>Here are results on Ivy</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980650#M17419</link>
      <description>Here are results on Ivy Bridge system.

&lt;STRONG&gt;[ Hardware ]&lt;/STRONG&gt;

Dell Precision Mobile M4700
Intel Core i7-3840QM ( Ivy Bridge / 4 cores / 8 logical CPUs / ark.intel.com/compare/70846 )
Size of L3 Cache = 8MB   ( shared between all cores for data &amp;amp; instructions )
Size of L2 Cache = 1MB   ( 256KB per core / shared for data &amp;amp; instructions )
Size of L1 Cache = 256KB ( 32KB per core for data &amp;amp; 32KB per core for instructions )
Windows 7 Professional 64-bit
32GB of RAM
96GB of VM

&lt;STRONG&gt;[ 64-bit application on Windows 7 Professional 64-bit OS ]&lt;/STRONG&gt;

Command line to compile: ifort.exe /O3 /Qopenmp /QxHost /Qmkl:parallel /Qansi-alias /align:array32byte Diag.f90

&lt;STRONG&gt;[ Number of CPUs used: 4 ( 4 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
 allocation of mat of        16000x       16000
Read the Hamilton-matrix...
...end!
Diagonalization with dsyev:
 real    1096.2s ; cpu    4380.5s
...done!
FIN!

&lt;STRONG&gt;[ Number of CPUs used: 2 ( 2 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
 allocation of mat of        16000x       16000
Read the Hamilton-matrix...
...end!
Diagonalization with dsyev:
 real    1454.9s ; cpu    2908.5s
...done!
FIN!

&lt;STRONG&gt;[ Number of CPUs used: 1 ( 1 thread  ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
 allocation of mat of        16000x       16000
Read the Hamilton-matrix...
...end!
Diagonalization with dsyev:
 real    2532.1s ; cpu    2529.7s
...done!
FIN!

&lt;STRONG&gt;[ Summary ]&lt;/STRONG&gt;

1 CPU  - real    2532.1s ; cpu    2529.7s
2 CPUs - real    1454.9s ; cpu    2908.5s
4 CPUs - real    1096.2s ; cpu    4380.5s</description>
      <pubDate>Wed, 19 Jun 2013 22:56:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980650#M17419</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T22:56:23Z</dc:date>
    </item>
    <item>
      <title>[ 32-bit application on</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980651#M17420</link>
      <description>&lt;STRONG&gt;[ 32-bit application on Windows 7 Professional 64-bit OS ]&lt;/STRONG&gt;

Command line to compile: ifort.exe /O3 /Qopenmp /QxHost /Qmkl:parallel /Qansi-alias /align:array32byte Diag.f90

&lt;STRONG&gt;[ Number of CPUs used: 4 ( 4 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - &lt;STRONG&gt;out of memory&lt;/STRONG&gt;

&lt;STRONG&gt;[ Number of CPUs used: 2 ( 2 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - out of memory

&lt;STRONG&gt;[ Number of CPUs used: 1 ( 1 thread  ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - out of memory

&lt;STRONG&gt;[ Summary ]&lt;/STRONG&gt;

1 CPU - N/A
2 CPU - N/A
4 CPU - N/A

&lt;STRONG&gt;Note:&lt;/STRONG&gt; As you can see a test for a 32-bit application failed.</description>
      <pubDate>Wed, 19 Jun 2013 22:59:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980651#M17420</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T22:59:32Z</dc:date>
    </item>
    <item>
      <title>[ 32-bit application on</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980652#M17421</link>
      <description>&lt;STRONG&gt;[ 32-bit application on Windows 7 Professional 64-bit OS ]&lt;/STRONG&gt;

Command line to compile: ifort.exe /O3 /Qopenmp /QxHost /Qmkl:parallel /Qansi-alias /align:array32byte Diag.f90

&lt;STRONG&gt;[ Number of CPUs used: 4 ( 4 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - &lt;STRONG&gt;out of memory&lt;/STRONG&gt;

&lt;STRONG&gt;[ Number of CPUs used: 2 ( 2 threads ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - out of memory

&lt;STRONG&gt;[ Number of CPUs used: 1 ( 1 thread  ) ]&lt;/STRONG&gt;

Read the Hamilton-matrix...
/Error diag       41 trying to allocate arryas mat and e
diag, arryas mat and e - out of memory

&lt;STRONG&gt;[ Summary ]&lt;/STRONG&gt;

1 CPU - N/A
2 CPU - N/A
4 CPU - N/A

&lt;STRONG&gt;Note:&lt;/STRONG&gt; As you can see a test for a 32-bit application failed.</description>
      <pubDate>Wed, 19 Jun 2013 22:59:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980652#M17421</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T22:59:53Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;[ Summary ]</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980653#M17422</link>
      <description>&amp;gt;&amp;gt;[ Summary ]
&amp;gt;&amp;gt;
&amp;gt;&amp;gt;1 CPU - real 2532.1s ; cpu 2529.7s
&amp;gt;&amp;gt;2 CPUs - real 1454.9s ; cpu 2908.5s
&amp;gt;&amp;gt;4 CPUs - real 1096.2s ; cpu 4380.5s

I could only confirm that performance scaling for cases with 1 CPU, 2 CPUs and 4 CPUs looks right. Unfortunately, I don't have a system with greater than 4 CPUs.</description>
      <pubDate>Wed, 19 Jun 2013 23:03:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980653#M17422</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-19T23:03:47Z</dc:date>
    </item>
    <item>
      <title>This is a short follow up and</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980654#M17423</link>
      <description>This is a short follow up and I wonder if Intel software engineers could verify scalability on a system with 8, or 16, or even more CPUs? Thanks in advance.

Note: Take into account that a set of environment variables was provided:
...
OMP_NUM_THREADS=16
MKL_NUM_THREADS=16
KMP_STACKSIZE=2gb
OMP_NESTED=FALSE
MKL_DYNAMIC=FALSE
KMP_LIBRARY=turnaround
KMP_AFFINITY=disabled
...</description>
      <pubDate>Fri, 21 Jun 2013 01:54:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980654#M17423</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-21T01:54:12Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey, James,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980655#M17424</link>
      <description>&lt;P&gt;Hi Sergey, James,&lt;/P&gt;
&lt;P&gt;Thanks a lot for the test.&amp;nbsp; just quick thought in my mind,&lt;/P&gt;
&lt;P&gt;Some of blas functions are threaded by OpeMP, but in order to keep&amp;nbsp;good performance,&amp;nbsp;it only&amp;nbsp;start&amp;nbsp;at&amp;nbsp;most 4 threads.&amp;nbsp; As the function gesv&amp;nbsp;should depend on blas function, so the scaliblity of your test&amp;nbsp;are limited to 4.&amp;nbsp;&amp;nbsp;we will check it again and let you know the details,&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 08:29:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980655#M17424</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-21T08:29:58Z</dc:date>
    </item>
    <item>
      <title>Indeed, please let us know</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980656#M17425</link>
      <description>&lt;P&gt;Indeed, please let us know ASAP, we have a spare 1800 threads that apparently can never be utilized by MKL.&lt;/P&gt;

&lt;P&gt;Also if blas is limited to 4 threads, how can it ever fully utilize a Xeon Phi card?&lt;/P&gt;

&lt;P&gt;o_0&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 14:04:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Benchmarking-MKL-Lapack-on-ccNUMA-systen/m-p/980656#M17425</guid>
      <dc:creator>james_B_8</dc:creator>
      <dc:date>2013-06-21T14:04:00Z</dc:date>
    </item>
  </channel>
</rss>

