<?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: The performance in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888917#M11179</link>
    <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Hi Vladimir,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;My Video card on P4 is ATI MOBILITY RADEON (IBM Notebook X32).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;I used the same test program and mechanisms on both P4 and C2D.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Thanks again and hope to hear from you soon.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken Chan&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jan 2007 13:08:31 GMT</pubDate>
    <dc:creator>ken_chan</dc:creator>
    <dc:date>2007-01-22T13:08:31Z</dc:date>
    <item>
      <title>The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888911#M11173</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm testing the simple_player on P4 and core 2 duo. I expect that IPP will have better performance on core 2 duo. But the result was not. Core 2 Duo cost the cpu usage between 50 to 70 % ( event more ).&lt;/P&gt;
&lt;P&gt;Is there any thing wrong?&lt;/P&gt;
&lt;P&gt;my hardware spec is :&lt;/P&gt;
&lt;P&gt;Inter Core to Duo 6600 , 2GB RAM, ATI X1600 Graphic card&lt;/P&gt;
&lt;P&gt;The video clip is 720x480 with 30FPS&lt;/P&gt;
&lt;P&gt;my command is : simple_player -v dx VideoClipName&lt;/P&gt;
&lt;P&gt;Need your help~ &lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2007 14:09:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888911#M11173</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-17T14:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888912#M11174</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;what compression algorithm was used in yourvideo clip (I want to know what decoder work in simple_player)?&lt;/P&gt;
&lt;P&gt;what version of IPP did you use? Do you know that the latest release version is IPP 5.1 and IPP 5.2 beta is available for evaluation? Can you update IPP binaries and media sample sources from the latest version?&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2007 05:05:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888912#M11174</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-18T05:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888913#M11175</link>
      <description>&lt;P&gt;Hi Vladimir,&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&lt;/P&gt;
&lt;P&gt;The video clip isMpeg4. Yes, I'm using 5.2 beta.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2007 12:47:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888913#M11175</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-18T12:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888914#M11176</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;could you please to print somewhere in the beginning of your program (but after call of ippStaticInit) version of IPP, to see what optimized code was loaded by IPP dispatcher?&lt;/P&gt;
&lt;P&gt;You can do this with simple piece of code like this:&lt;/P&gt;&lt;PRE&gt; const IppLibraryVersion* ippvc = ippvcGetLibVersion();&lt;/PRE&gt;&lt;PRE&gt; printf("Intel Integrated Performance Primitives
");&lt;BR /&gt; printf(" version: %s, [%d.%d.%d.%d]
",&lt;BR /&gt; ippvc-&amp;gt;Version, ippvc-&amp;gt;major, ippvc-&amp;gt;minor, ippvc-&amp;gt;build, ippvc-&amp;gt;majorBuild);&lt;BR /&gt; printf(" name: %s
", ippvc-&amp;gt;Name);&lt;BR /&gt; printf(" date: %s
", ippvc-&amp;gt;BuildDate);&lt;/PRE&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2007 06:27:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888914#M11176</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-19T06:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888915#M11177</link>
      <description>&lt;P&gt;Hi Vladimir,&lt;/P&gt;
&lt;P&gt;Here is the information.&lt;/P&gt;
&lt;P&gt;On P4 &lt;/P&gt;
&lt;P&gt;----------------------------------------&lt;/P&gt;
&lt;P&gt;Intel Integrated Performance Primitives&lt;BR /&gt; version: 5.2 beta, [5.2.291.35]&lt;BR /&gt; name: ippvcw7-5.2.dll&lt;BR /&gt; date: Oct 10 2006&lt;/P&gt;
&lt;P&gt;----------------------------------------&lt;/P&gt;
&lt;P&gt;On Core2Duo&lt;/P&gt;
&lt;P&gt;----------------------------------------&lt;/P&gt;
&lt;P&gt;Intel Integrated Performance Primitives&lt;BR /&gt; version: 5.2 beta, [5.2.291.35]&lt;BR /&gt; name: ippvcv8-5.2.dll&lt;BR /&gt; date: Oct 10 2006&lt;/P&gt;
&lt;P&gt;----------------------------------------&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2007 13:08:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888915#M11177</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-19T13:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888916#M11178</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;on Core 2 Duo performance should be better for sure. So, I'm trying to find a reason. What is the video card on your P4 systems?&lt;/P&gt;
&lt;P&gt;Our MPEG4 decoder (and encoder as well) is threaded, and so it should utilize both cores. If you play video in maximum speed the cpu usage should be higher on Core 2 Duo. But if you do usual playback, cpu usage of course should be lower.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2007 07:16:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888916#M11178</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-20T07:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888917#M11179</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Hi Vladimir,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;My Video card on P4 is ATI MOBILITY RADEON (IBM Notebook X32).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;I used the same test program and mechanisms on both P4 and C2D.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Thanks again and hope to hear from you soon.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken Chan&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2007 13:08:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888917#M11179</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-22T13:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888918#M11180</link>
      <description>&lt;P&gt;Hi Ken,&lt;/P&gt;
&lt;P&gt;it is strange, but we can't reproduce such issue. Did you tried different video streams?&lt;/P&gt;
&lt;P&gt;Note, MPEG4 decoder and encoder are threaded with using OpenMP API, so you run them at the maximum speed they should utilize processor more (they will use both cores) then non threaded version (like when you run them on single core system. But, if you run decoder like you mention, to keep desired frame rate, they should defintely use processor less.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2007 07:37:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888918#M11180</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-29T07:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888919#M11181</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Hi Vladimir,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Thanks for your reply.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;My video stream is standard with ISO 14496-2. Some decoders like DivX, XVid, FFMpged were working finewith it.I think IPP should be betterfor cpu usage. But the result isreally strange. :'(&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;For you to reproduce the issue. If that is possible, did any thing I can help?To provide the video stream?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken Chan&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2007 11:48:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888919#M11181</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-29T11:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888920#M11182</link>
      <description>&lt;P&gt;Ken,&lt;/P&gt;
&lt;P&gt;if you can provide problem stream it would be nice and will help us inreproducing that issue&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2007 17:59:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888920#M11182</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-30T17:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888921#M11183</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Dear Vladimir,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;I uploaded the video stream as a file @ &lt;/FONT&gt;&lt;A href="http://actiftp.hosting4less.com/Intel/"&gt;&lt;FONT face="Arial"&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;A href="http://actiftp.hosting4less.com/Intel/" target="_blank"&gt;http://actiftp.hosting4less.com/Intel/&lt;/A&gt;&lt;FONT face="Arial"&gt;, and the file name is "ForIntel.rar".&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Please feel free to let me know ifanything needs me.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Thanks again and hope to hear from you soon.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken Chan&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2007 16:21:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888921#M11183</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-01-31T16:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888922#M11184</link>
      <description>&lt;P&gt;Thank you, I'll pass it to our experts for analises&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2007 22:14:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888922#M11184</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2007-01-31T22:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888923#M11185</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Hi Nikolay,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Thanks for your reply.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Yes, i tried to play the video plip with -n, but the CPU usage have no different to without -n( still cost 50 - 70 ).&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regrards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken Chan&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2007 10:54:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888923#M11185</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-02-06T10:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: The performance</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888924#M11186</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Hi Nikolay,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Here is the log. My command is "-vdx -n ForIntel.raw", &lt;/FONT&gt;&lt;FONT face="Arial"&gt;I add the log for version, name, date last time request by Vladimir.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Intel Integrated Performance Primitives&lt;BR /&gt; version: 5.2 beta, [5.2.291.35]&lt;BR /&gt; name: ippvcv8-5.2.dll&lt;BR /&gt; date: Oct 10 2006&lt;BR /&gt;Video Render :GDI&lt;BR /&gt;-RenderFormat:YV12&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Stream Type :MPEG4PV&lt;BR /&gt;Video Info :&lt;BR /&gt;-Video Type :MPEG4&lt;BR /&gt;-Resolution :720x480&lt;BR /&gt;-Frame Rate :0.00&lt;BR /&gt;Audio Info :&lt;BR /&gt;-Audio Type :UNDEF&lt;BR /&gt;-S.Frequency :0&lt;BR /&gt;-Num.Channel :0&lt;BR /&gt;-BitPerSample:0&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;DecRate:774.97 fps(Dec 1.18ms/f + Conv 0.11ms/f = 1.29ms/f) RndrRate 31.99fps Audio Dec 0.00chnls &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;DecRate:1034.18 fps(Dec 0.87ms/f + Conv 0.10ms/f = 0.97ms/f) RndrRate 32.00fps Audio Dec 0.00chnls &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;DecRate:1044.06 fps(Dec 0.86ms/f + Conv 0.10ms/f = 0.96ms/f) RndrRate 32.00fps Audio Dec 0.00chnls &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;DecRate:1045.93 fps(Dec 0.85ms/f + Conv 0.10ms/f = 0.96ms/f) RndrRate 32.00fps Audio Dec 0.00chnls &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;DecRate:1039.28 fps(Dec 0.86ms/f + Conv 0.11ms/f = 0.96ms/f) RndrRate 32.00fps Audio Dec 0.00chnls &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Ken&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2007 04:18:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/The-performance/m-p/888924#M11186</guid>
      <dc:creator>ken_chan</dc:creator>
      <dc:date>2007-02-08T04:18:24Z</dc:date>
    </item>
  </channel>
</rss>

