<?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 MKL BLAS not multithreading zgemv in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1476322#M34461</link>
    <description>&lt;P&gt;I'm running a very simple MKL BLAS matrix-matrix and matrix-vector multiplication on a computer with two AMD EPYC 7443 24-Core Processors and 1007GB RAM.&lt;/P&gt;
&lt;P&gt;The code, compiling line and test results are given at the end of this post.&lt;/P&gt;
&lt;P&gt;BLAS is apparently not multithreading the mat-vec operation, but only the mat-mat as you can see below.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can I make the mat-vec operation multithreaded?&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;What am I doing wrong?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here's the code:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;program main

use blas95

implicit none

integer, parameter :: lp = kind(DBLE(1.0))
integer :: m, n, i
complex(kind=lp), dimension(:), allocatable :: x, y
complex(kind=lp), dimension(:,:), allocatable :: A, B, C

m=2**12
n=2**12

allocate(A(m,n))
allocate(B(n,m),C(m,m))
allocate(x(n),y(m))

do i=0,5
call mkl_set_num_threads_local(2**i)
call mkl_set_dynamic(0)
call gemm(A,B,C)
end do
do i=0,5
call mkl_set_num_threads_local(2**i)
call mkl_set_dynamic(0)
call gemv(A,x,y)
end do

end program main&lt;/LI-CODE&gt;
&lt;P&gt;Here's my compile line:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;gfortran -Ofast -I$MKLROOT/include -I$BLASROOT/include/intel64/lp64 main.F90 -L$MKLROOT/lib/intel64 -o main -lgomp -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core $BLASROOT/lib/intel64/libmkl_blas95_lp64.a
&lt;/LI-CODE&gt;
&lt;P&gt;Here's the output:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;MKL_VERBOSE oneMKL 2022.0 Product build 20211112 for Intel(R) 64 architecture Intel(R) Architecture processors, Lnx 1.79GHz lp64 gnu_thread
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 10.94s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 5.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 3.76s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 1.59s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 925.07ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 606.32ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 12.23ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.68ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.66ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.62ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.64ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.60ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32
&lt;/LI-CODE&gt;
&lt;P&gt;And here's a test result of only the mat-vec but with a larger matrix and vector:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;MKL_VERBOSE oneMKL 2022.0 Product build 20211112 for Intel(R) 64 architecture Intel(R) Architecture processors, Lnx 1.79GHz lp64 gnu_thread
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.89s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.87s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 13 Apr 2023 14:37:03 GMT</pubDate>
    <dc:creator>AstorPiaz</dc:creator>
    <dc:date>2023-04-13T14:37:03Z</dc:date>
    <item>
      <title>MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1476322#M34461</link>
      <description>&lt;P&gt;I'm running a very simple MKL BLAS matrix-matrix and matrix-vector multiplication on a computer with two AMD EPYC 7443 24-Core Processors and 1007GB RAM.&lt;/P&gt;
&lt;P&gt;The code, compiling line and test results are given at the end of this post.&lt;/P&gt;
&lt;P&gt;BLAS is apparently not multithreading the mat-vec operation, but only the mat-mat as you can see below.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can I make the mat-vec operation multithreaded?&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;What am I doing wrong?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here's the code:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;program main

use blas95

implicit none

integer, parameter :: lp = kind(DBLE(1.0))
integer :: m, n, i
complex(kind=lp), dimension(:), allocatable :: x, y
complex(kind=lp), dimension(:,:), allocatable :: A, B, C

m=2**12
n=2**12

allocate(A(m,n))
allocate(B(n,m),C(m,m))
allocate(x(n),y(m))

do i=0,5
call mkl_set_num_threads_local(2**i)
call mkl_set_dynamic(0)
call gemm(A,B,C)
end do
do i=0,5
call mkl_set_num_threads_local(2**i)
call mkl_set_dynamic(0)
call gemv(A,x,y)
end do

end program main&lt;/LI-CODE&gt;
&lt;P&gt;Here's my compile line:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;gfortran -Ofast -I$MKLROOT/include -I$BLASROOT/include/intel64/lp64 main.F90 -L$MKLROOT/lib/intel64 -o main -lgomp -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core $BLASROOT/lib/intel64/libmkl_blas95_lp64.a
&lt;/LI-CODE&gt;
&lt;P&gt;Here's the output:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;MKL_VERBOSE oneMKL 2022.0 Product build 20211112 for Intel(R) 64 architecture Intel(R) Architecture processors, Lnx 1.79GHz lp64 gnu_thread
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 10.94s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 5.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 3.76s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 1.59s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 925.07ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMM(N,N,4096,4096,4096,0x7fff21099cf0,0x154a1f17b010,4096,0x154a0f17a010,4096,0x7fff21099ce0,0x1549ff179010,4096) 606.32ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 12.23ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.68ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.66ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.62ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.64ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMV(N,4096,4096,0x7fff21099d10,0x154a1f17b010,4096,0x1d59930,1,0x7fff21099d00,0x1d69940,1) 11.60ms CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32
&lt;/LI-CODE&gt;
&lt;P&gt;And here's a test result of only the mat-vec but with a larger matrix and vector:&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;MKL_VERBOSE oneMKL 2022.0 Product build 20211112 for Intel(R) 64 architecture Intel(R) Architecture processors, Lnx 1.79GHz lp64 gnu_thread
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.89s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:1
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.87s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:2
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:4
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:8
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:16
MKL_VERBOSE ZGEMV(N,65536,65536,0x7fff04973380,0x14f20a01e010,65536,0x1502125d9010,1,0x7fff04973370,0x14d209f1b010,1) 4.90s CNR:OFF Dyn:0 FastMM:1 TID:0 NThr:32&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 13 Apr 2023 14:37:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1476322#M34461</guid>
      <dc:creator>AstorPiaz</dc:creator>
      <dc:date>2023-04-13T14:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1477879#M34478</link>
      <description>&lt;P&gt;Hi Astor,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried compiling your code, but we are getting the following error.&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;Fatal Error: Reading module ‘blas95’ at line 1 column 2: Unexpected EOF&lt;/LI-CODE&gt;
&lt;P&gt;We are using the following compile line:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;gfortran -Ofast -I$MKLROOT/include -I/opt/intel/oneapi/mkl/latest/include/intel64/lp64 main.F90 -L$MKLROOT/lib/intel64 -o main -lgomp -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core /opt/intel/oneapi/mkl/latest/lib/intel64/libmkl_blas95_lp64.a&lt;/LI-CODE&gt;
&lt;P&gt;There might be some mismatch between your mod files and ours.&lt;/P&gt;
&lt;P&gt;Could you please give us the following so we could look into your issue further?&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;The MKL version you are using.&lt;/LI&gt;
&lt;LI&gt;blas.mod file&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;Praneeth Achanta&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Apr 2023 10:20:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1477879#M34478</guid>
      <dc:creator>PraneethA_Intel</dc:creator>
      <dc:date>2023-04-18T10:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1479283#M34502</link>
      <description>&lt;P&gt;Hi Praneeth,&lt;/P&gt;
&lt;P&gt;Thanks for your assistance.&lt;/P&gt;
&lt;P&gt;The error you see is most likely due to your blas95 interface not having been compiled with gfortran for your architecture.&lt;/P&gt;
&lt;P&gt;In order to solve it you can follow the instructions in the &lt;A href="https://www.intel.com/content/www/us/en/docs/onemkl/developer-guide-windows/2023-0/fortran-95-interfaces-to-lapack-and-blas.html" target="_self"&gt;Developer Guide here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;I cannot unfortunately give you the blas95.mod file since this forum does not allow attachments of that kind and throws an error.&lt;/P&gt;
&lt;P&gt;The version of MKL is&amp;nbsp;2022.0.2.&lt;/P&gt;
&lt;P&gt;Please let me know of any other information you need.&lt;/P&gt;
&lt;P&gt;Again, thanks for your assistance.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Astor&lt;/P&gt;</description>
      <pubDate>Sat, 22 Apr 2023 16:59:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1479283#M34502</guid>
      <dc:creator>AstorPiaz</dc:creator>
      <dc:date>2023-04-22T16:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1482176#M34547</link>
      <description>&lt;P&gt;Hi Astor,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the information.&lt;/P&gt;
&lt;P&gt;We have tried running your code on Intel Sapphire Rapids and got results as shown in the attached file.&lt;/P&gt;
&lt;P&gt;We can only offer direct support for Intel hardware platforms that the Intel® oneAPI product supports.&amp;nbsp;Please see &lt;A href="https://www.intel.com/content/www/us/en/developer/articles/system-requirements/oneapi-math-kernel-library-system-requirements.html" target="_self"&gt;this&lt;/A&gt; link for a&amp;nbsp; list of all supported processors.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let us know if it works as intended on Intel processors for you.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;Praneeth Achanta&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 11:30:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1482176#M34547</guid>
      <dc:creator>PraneethA_Intel</dc:creator>
      <dc:date>2023-05-02T11:30:02Z</dc:date>
    </item>
    <item>
      <title>Re:MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1484402#M34563</link>
      <description>&lt;P&gt;Hi Astor,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you give us an update on your issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praneeth Achanta&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 09 May 2023 05:44:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1484402#M34563</guid>
      <dc:creator>PraneethA_Intel</dc:creator>
      <dc:date>2023-05-09T05:44:33Z</dc:date>
    </item>
    <item>
      <title>Re:MKL BLAS not multithreading zgemv</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1487255#M34594</link>
      <description>&lt;P&gt;Hi Astor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have not heard back from you. We hope the information provided helped. If you need any additional help please post a new question as this thread will no longer be monitored by Intel.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praneeth Achanta&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 18 May 2023 02:53:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-BLAS-not-multithreading-zgemv/m-p/1487255#M34594</guid>
      <dc:creator>PraneethA_Intel</dc:creator>
      <dc:date>2023-05-18T02:53:16Z</dc:date>
    </item>
  </channel>
</rss>

