<?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 Re: Re:Using cblas_sgemm causes program to crash in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1276747#M31248</link>
    <description>&lt;P&gt;It is also currently giving me a symbol file not loaded for mkl_intel_thread.1.dll during runtime and i do have the dll files located in where the output files are located (eg .exe file)&lt;/P&gt;</description>
    <pubDate>Mon, 26 Apr 2021 20:09:56 GMT</pubDate>
    <dc:creator>Nongshim12</dc:creator>
    <dc:date>2021-04-26T20:09:56Z</dc:date>
    <item>
      <title>Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273139#M31186</link>
      <description>&lt;P&gt;When the program reaches the point where it uses cblas_sgemm when called, it appears to exit with a code 20 , otherwise does not show an error message when it comes. Any idea what is causing this?&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 06:14:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273139#M31186</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-13T06:14:21Z</dc:date>
    </item>
    <item>
      <title>Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273475#M31190</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please share a minimal reproducer along with OS, Compiler and MKL version information with us?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Apr 2021 10:18:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273475#M31190</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-14T10:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273677#M31193</link>
      <description>&lt;P&gt;Currently using windows 10, Intel C++ 2021 compiler, and MKL 2021.1.1&lt;/P&gt;
&lt;P&gt;Here is a sample of the code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;float scale(float sx, float sy, float sz)
{
	float x1[4*4], x2[4*4], x3[4*4];
        float alpha = 1.0;
	float beta = 0.0;
	int b = 0;

	for (int j = 0; j &amp;lt; 4; j++) {
		for (int i = 0; i &amp;lt; 4; i++) {
			if (i == j) {
				if (i == 0) {
					x2[b] = sx;
					x1[b] = 1;
				}
				else if (i == 1) {
					x2[b] = sy;
					x1[b] = 1;
				}
				else if (i == 2) {
					x2[b] = sz;
					x1[b] = 1;
				}
				else if (i == 3) {
					x2[b] = 1;
					x1[b] = 1;
				}

			}
			else {
				x2[b] = 0;
				x1[b] = 0;
			}
			b++;
		}
	}
	cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, 4, 4, 4, alpha, x1, 4, x2, 4, beta, x3, 4);
	return x3;
}


​&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 15 Apr 2021 01:14:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1273677#M31193</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-15T01:14:40Z</dc:date>
    </item>
    <item>
      <title>Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274654#M31203</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I tried running the program using cmd, it worked for me. Can you please try compiling it on cmd and let me know if you are facing any issues?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Apr 2021 09:07:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274654#M31203</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-19T09:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274655#M31204</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Sorry one thing i forgot to mention, i am using visual studio 2019 to run and compile (switched project to use intel compiler as well). I am not well versed in knowing how to compile using cmd for it since I do not usually use this as i am pretty new to using c++ and intel compilers/libraries.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 09:12:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274655#M31204</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-19T09:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274696#M31205</link>
      <description>&lt;P&gt;Your function is declared as returning a scalar float, but you are attempting to return a pointer to an array of float. Secondly, x3 is a local variable, which goes out of scope when the function returns.&lt;/P&gt;
&lt;P&gt;Here is a suggestion to get things working. Instead of calling cblas_sgemm, write code to calculate x3 (simply setting all 16 elements to 0.0 will do). After you get the function to work, replace that code with the call to cblas_gemm.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 11:50:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274696#M31205</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2021-04-19T11:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274744#M31206</link>
      <description>&lt;P&gt;In my current code which i have tried to continue to figure out, i do have all 16 values within x3 set to 0.0f, however it is still doing the same thing of exiting at the cblas_sgemm call at the end as it does not print anything after that when i put a print call after it but does right before the call.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:44:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274744#M31206</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-19T15:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274805#M31207</link>
      <description>&lt;P&gt;You did not respond to the remarks in the first paragraph of my post. Your code is wrong.&lt;/P&gt;
&lt;P&gt;The return type of the argument does not match the type in the function declaration. In fact, the GCC compiler says the same thing when run on your code:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;broken.c:37:8: error: incompatible types when returning type 'float *' but 'float' was expected
   37 | return x3;
      |        ^~&lt;/LI-CODE&gt;
&lt;P&gt;My other comment, regarding returning a local pointer to a caller, is also important.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 18:56:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274805#M31207</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2021-04-19T18:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274810#M31208</link>
      <description>&lt;P&gt;Well yes, i have fixed that as well but forgot to mention it. But my main focus right now is why it is stopping at the cblas_sgemm call right now as everything else works&amp;nbsp; but that call.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 19:20:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1274810#M31208</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-19T19:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275053#M31211</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please follow the procedure below and let us know if you face any issues:&lt;/P&gt;
&lt;P&gt;1) Open ""oneAPI command prompt for Visual Studio" to automatically source oneAPI environment or execute the setvars.bat file in oneAPI installation path(In General Command Prompt) to manually source the oneAPI environment.&lt;/P&gt;
&lt;P&gt;2) Compile /Run the program using the command:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;icl /Qmkl example.cpp &amp;amp;&amp;amp; example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is your working sample code:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include&amp;lt;stdio.h&amp;gt;
#include&amp;lt;mkl.h&amp;gt;



float* scale(float sx, float sy, float sz)
{
	float x1[4 * 4], x2[4 * 4], x3[4 * 4];
	float alpha = 1.0;
	float beta = 0.0;
	int b = 0;

	for (int j = 0; j &amp;lt; 4; j++) {
		for (int i = 0; i &amp;lt; 4; i++) {
			if (i == j) {
				if (i == 0) {
					x2[b] = sx;
					x1[b] = 1;
				}
				else if (i == 1) {
					x2[b] = sy;
					x1[b] = 1;
				}
				else if (i == 2) {
					x2[b] = sz;
					x1[b] = 1;
				}
				else if (i == 3) {
					x2[b] = 1;
					x1[b] = 1;
				}

			}
			else {
				x2[b] = 0;
				x1[b] = 0;
			}
			b++;
		}
	}
	cblas_sgemm(CblasRowMajor, CblasNoTrans, CblasNoTrans, 4, 4, 4, alpha, x1, 4, x2, 4, beta, x3, 4);
	return x3;
}
int main()
{
	float* p;
	p = scale(1.2, 2.2, 3.1);
	for (int i = 0; i &amp;lt; 16; i++) {
		
			printf("%f", p[i]);
		printf("\t");
		
	}



return 0;

}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Rajesh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 11:07:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275053#M31211</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-20T11:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275215#M31216</link>
      <description>&lt;P&gt;Hi Rajesh,&lt;/P&gt;
&lt;P&gt;Thank you, i have been able to get my sample code working now, however when i tried to implement this code to something similar to a current project i have been working on and it appears that any MKL calls i make just quits the cmd prompt that is open when i print out values such as mkl_malloc and the cblas_sgemm functions. Without those calls, everything runs through, however when the mkl calls are there, it just completely closes at those function calls. Is this due to something i need to add for environments? It is a separate project folder as a dll project to the main application (however my sample code is built the same way and works).&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 23:24:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275215#M31216</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-20T23:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275368#M31217</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please update the current oneAPI version to 2021.2, make sure that you either set oneMKL in sequential or parallel mode. If you use ILP64, make sure to set it to Yes and configure the debug version x64, x86 accordingly in the visual studio and let us know if you face any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check the attached picture which shows the above configuration in visual studio.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Rajesh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 10:13:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275368#M31217</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-21T10:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275597#M31223</link>
      <description>&lt;P&gt;It appears that I can finally see what exception is being thrown by Visual Studio when using debugger and this is being thrown:&lt;/P&gt;
&lt;P&gt;Exception thrown at 0x7556A8B2 (KernelBase.dll) in MakeSTL2.exe: 0xC06D007E: Module not found (parameters: 0x00F7EFBC).&lt;BR /&gt;Unhandled exception at 0x7556A8B2 (KernelBase.dll) in MakeSTL2.exe: 0xC06D007E: Module not found (parameters: 0x00F7EFBC). &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do have the MKL setting set to parallel currently in the settings so it should be using the MKL library.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 21:41:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275597#M31223</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-21T21:41:24Z</dc:date>
    </item>
    <item>
      <title>Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275793#M31231</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Do you see the same behavior with other MKL applications or is it specific to this application?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please ensure you upgrade your oneAPI base toolkit to latest version(2021.2). Let us know if you face any issues.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Apr 2021 10:56:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1275793#M31231</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-22T10:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1276746#M31247</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Currently i am only using this application for my project. I have upgraded the base toolkit to the latest version and it still gives me the module not found during runtime.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Apr 2021 20:07:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1276746#M31247</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-26T20:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1276747#M31248</link>
      <description>&lt;P&gt;It is also currently giving me a symbol file not loaded for mkl_intel_thread.1.dll during runtime and i do have the dll files located in where the output files are located (eg .exe file)&lt;/P&gt;</description>
      <pubDate>Mon, 26 Apr 2021 20:09:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1276747#M31248</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-04-26T20:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1277307#M31261</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Can you once please refer to the earlier reply, running code on cmd and check whether the same issue is present.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Follow these steps to include the missing DLL path:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Open the project property pages (Alt + Enter)&lt;/LI&gt;
&lt;LI&gt;Change the&amp;nbsp;&lt;I&gt;Configuration&lt;/I&gt;&amp;nbsp;to Debug (On the top left corner)&lt;/LI&gt;
&lt;LI&gt;On the left window, under the&amp;nbsp;&lt;I&gt;Configuration properties&lt;/I&gt;&amp;nbsp;tab, click on&amp;nbsp;&lt;I&gt;Debugging&lt;/I&gt;.&lt;/LI&gt;
&lt;LI&gt;Under the&amp;nbsp;&lt;I&gt;Action&lt;/I&gt;&amp;nbsp;tab, click on the&amp;nbsp;&lt;I&gt;Environment&lt;/I&gt;&amp;nbsp;field and add the following:&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="markup"&gt;PATH=C:\Program Files (x86)\Intel\oneAPI\mkl\latest\redist\intel64;%PATH%
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Save the changes and run your executable. Let us know if you face any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Rajesh.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Apr 2021 11:02:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1277307#M31261</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-04-28T11:02:17Z</dc:date>
    </item>
    <item>
      <title>Re:Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1278698#M31272</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know if there is any update.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 May 2021 08:38:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1278698#M31272</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-05-04T08:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1278996#M31277</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Yes, i was able to get it working now. Thank you for all the help and suggestions.&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 07:43:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1278996#M31277</guid>
      <dc:creator>Nongshim12</dc:creator>
      <dc:date>2021-05-05T07:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using cblas_sgemm causes program to crash</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1279010#M31278</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the confirmation!&lt;/P&gt;
&lt;P&gt;As this issue has been resolved, we will no longer respond to this thread. If you require any additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a Good day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Rajesh&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 08:49:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Using-cblas-sgemm-causes-program-to-crash/m-p/1279010#M31278</guid>
      <dc:creator>MRajesh_intel</dc:creator>
      <dc:date>2021-05-05T08:49:01Z</dc:date>
    </item>
  </channel>
</rss>

