<?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: Unusual Behavior when using ippsGFpCmpElement in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1348964#M27886</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you for your patience.&lt;/P&gt;
&lt;P&gt;The issue raised by you has been fixed in the latest oneAPI 2022.1 version(ippcp 2021.5).&lt;/P&gt;
&lt;P&gt;Please download and let us know if this resolves your issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Noorjahan.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jan 2022 09:13:12 GMT</pubDate>
    <dc:creator>NoorjahanSk_Intel</dc:creator>
    <dc:date>2022-01-06T09:13:12Z</dc:date>
    <item>
      <title>Unusual Behavior when using ippsGFpCmpElement</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1320328#M27801</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When trying to implement the code below,&amp;nbsp; ippsGFpCmpElement returns a result of 2. Indicating that the small_number is larger then the large number. This is unexpected since the large number, small number and modulus are:&lt;/P&gt;
&lt;P&gt;large_number: 319014718988379809496913694531707207695&lt;BR /&gt;small_number: 319014718988379809496913694467282698255&lt;/P&gt;
&lt;P&gt;modulus: 115792089210356248762697446949407573530086143415290314195533631308867097853951&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;BigNum large_number("0xF0000000000000000000000F0000000F");
		BigNum small_number ("0xF000000000000000000000000000000F");
		BigNum mod_256_correct  ("0xFFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF");

		IppsBigNumSGN Sign, Sign_small;
		int BitLen, BitLen_small;
		Ipp32u* pData, *pData_small;
		ippsRef_BN(&amp;amp;Sign, &amp;amp;BitLen, &amp;amp;pData, large_number);
		ippsRef_BN(&amp;amp;Sign_small, &amp;amp;BitLen_small, &amp;amp;pData_small, small_number);


		//Init large gfelement
		int size = 0;
		int err_state = 0;
		ippsGFpGetSize(256, &amp;amp;size);	
		
		IppsGFpState* _p_galois_field = (IppsGFpState*)(new Ipp8u[size]);;	

		ippsGFpInit( mod_256_correct, mod_256_correct.BitSize(), ippsGFpMethod_p256r1(),_p_galois_field );

		size = 0;
		ippsGFpElementGetSize(_p_galois_field, &amp;amp;size);

		IppsGFpElement*	_p_large_num = (IppsGFpElement*) (new Ipp8u[size]);;
		IppsGFpElement*	_p_small_num = (IppsGFpElement*) (new Ipp8u[size]);;	
		
		
		ippsGFpElementInit(pData, BITSIZE_WORD(BitLen),_p_large_num,_p_galois_field);
		ippsGFpElementInit(pData_small, BITSIZE_WORD(BitLen_small),_p_small_num,_p_galois_field); 
 
		int result = 0;
		auto error_code = ippsGFpCmpElement(_p_large_num, _p_small_num, &amp;amp;result, _p_galois_field);

		delete[](Ipp8u*)_p_small_num;
		delete[](Ipp8u*)_p_large_num;
		delete[](Ipp8u*)_p_galois_field;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Am I wrong to expect a value of 1 for result?&lt;/P&gt;
&lt;P&gt;Also, my implementation of the Bignum&amp;nbsp; class is from the Developers Reference.&lt;/P&gt;
&lt;P&gt;Ippcp version info: ippCP&amp;nbsp;AVX2&amp;nbsp;(l9)&amp;nbsp;2020.0.3&lt;/P&gt;
&lt;P&gt;Windows 64 bit machine.&lt;/P&gt;
&lt;P&gt;I appreciate the help!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 11:02:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1320328#M27801</guid>
      <dc:creator>Crypto_P</dc:creator>
      <dc:date>2021-10-08T11:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Behavior when using ippsGFpCmpElement</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1321260#M27802</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;We are also able to reproduce the issue with 2021.04 version from our end.&lt;/P&gt;
&lt;P&gt;We are looking into it. We will get back to you soon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Noorjahan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Oct 2021 10:52:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1321260#M27802</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2021-10-18T10:52:46Z</dc:date>
    </item>
    <item>
      <title>Re:Unusual Behavior when using ippsGFpCmpElement</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1321336#M27804</link>
      <description>&lt;P&gt;using the latest 2021.4 version, I see the output results == 0. which is the  wrong results.&lt;/P&gt;&lt;P&gt;&amp;gt;test.exe&lt;/P&gt;&lt;P&gt;ippCP AVX2 (l9) 2021.1 (10.0) (r0xf3e1808) 2021.1.0.255727624&lt;/P&gt;&lt;P&gt;...ippsGFpCmpElement returns 0 code&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We will escalate the case versus the Crypto developer team and will get back to this shortly.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Oct 2021 12:40:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1321336#M27804</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-10-12T12:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Unusual Behavior when using ippsGFpCmpElement</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1348964#M27886</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thank you for your patience.&lt;/P&gt;
&lt;P&gt;The issue raised by you has been fixed in the latest oneAPI 2022.1 version(ippcp 2021.5).&lt;/P&gt;
&lt;P&gt;Please download and let us know if this resolves your issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Noorjahan.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 09:13:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1348964#M27886</guid>
      <dc:creator>NoorjahanSk_Intel</dc:creator>
      <dc:date>2022-01-06T09:13:12Z</dc:date>
    </item>
    <item>
      <title>Re:Unusual Behavior when using ippsGFpCmpElement</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1350872#M27899</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here is the output results when linked this case against IPP 2021 u5:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;ippCP AVX2 (l9) 2021.5.0 (11.3 ) (r0xaf5af430) 2021.5.0&lt;/P&gt;&lt;P&gt;...ippsGFpCmpElement returns 0 code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;B&gt;...ippsGFpCmpElement Result 1&amp;nbsp;&amp;nbsp;--&amp;gt; &lt;/B&gt;#define IPP_IS_GT (1) // the first element is greater than the second one&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The issue is closing.&lt;/P&gt;&lt;P&gt;This issue has been resolved and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Gennady&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, 12 Jan 2022 16:56:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Unusual-Behavior-when-using-ippsGFpCmpElement/m-p/1350872#M27899</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2022-01-12T16:56:46Z</dc:date>
    </item>
  </channel>
</rss>

