<?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 Problem with ippiMalloc_16u_C1() in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890309#M11345</link>
    <description>&lt;DIV id="tiny_quote"&gt;
&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=465475" class="basic" href="https://community.intel.com/en-us/profile/465475/"&gt;marco.o&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;Hi all,   I've a problem with ippiMalloc_16u_C1. When I try to allocate memory for an image (16bit depth, 1 channel PNG format) it return a  stride = width * 16 / 8 + 10 and not = width *16/8  Why?? &lt;/I&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;HI, Marco.o&lt;/P&gt;
&lt;P&gt;Did find a solution, Ithink you must try and go on the advice renegr's given you. With this way, you'll be ok.Sure.&lt;/P&gt;
&lt;P&gt;Feel free and try to submit again if no solution.&lt;/P&gt;
&lt;P&gt;Nice to have you as new member&lt;/P&gt;</description>
    <pubDate>Wed, 17 Feb 2010 14:11:32 GMT</pubDate>
    <dc:creator>macaire</dc:creator>
    <dc:date>2010-02-17T14:11:32Z</dc:date>
    <item>
      <title>Problem with ippiMalloc_16u_C1()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890306#M11342</link>
      <description>Hi all,
  I've a problem with ippiMalloc_16u_C1.
When I try to allocate memory for an image (16bit depth, 1 channel PNG format) it return a 
stride = width * 16 / 8 + 10 and not = width *16/8

Why??</description>
      <pubDate>Wed, 17 Feb 2010 11:54:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890306#M11342</guid>
      <dc:creator>marco_o</dc:creator>
      <dc:date>2010-02-17T11:54:42Z</dc:date>
    </item>
    <item>
      <title>Problem with ippiMalloc_16u_C1()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890307#M11343</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;ippiMalloc_* allocate a block of memory with each line aligned on a 32 bytes boundary.&lt;/P&gt;
&lt;P&gt;So I guess that width*16/8 + 10 is a multiple of 32 in your case. That is width = 11 + x * 32 if I'm not mistaken.&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Matthieu&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2010 13:00:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890307#M11343</guid>
      <dc:creator>matthieu_darbois</dc:creator>
      <dc:date>2010-02-17T13:00:44Z</dc:date>
    </item>
    <item>
      <title>Problem with ippiMalloc_16u_C1()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890308#M11344</link>
      <description>&lt;P&gt;ippiMalloc not only aligns the x but also the y axis. If this is a problem for you, of course you can use ippsMalloc or _aligned_malloc from CRT. Then your stride is width*16/8 and you can use this stride also as a parameter to some ippi* functions. Many ippi* functions like color conversion, add, subtract ... will work without 32byte aligned lines.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2010 13:52:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890308#M11344</guid>
      <dc:creator>renegr</dc:creator>
      <dc:date>2010-02-17T13:52:51Z</dc:date>
    </item>
    <item>
      <title>Problem with ippiMalloc_16u_C1()</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890309#M11345</link>
      <description>&lt;DIV id="tiny_quote"&gt;
&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=465475" class="basic" href="https://community.intel.com/en-us/profile/465475/"&gt;marco.o&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color: #e5e5e5; padding: 5px; border: 1px inset; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;Hi all,   I've a problem with ippiMalloc_16u_C1. When I try to allocate memory for an image (16bit depth, 1 channel PNG format) it return a  stride = width * 16 / 8 + 10 and not = width *16/8  Why?? &lt;/I&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;HI, Marco.o&lt;/P&gt;
&lt;P&gt;Did find a solution, Ithink you must try and go on the advice renegr's given you. With this way, you'll be ok.Sure.&lt;/P&gt;
&lt;P&gt;Feel free and try to submit again if no solution.&lt;/P&gt;
&lt;P&gt;Nice to have you as new member&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2010 14:11:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Problem-with-ippiMalloc-16u-C1/m-p/890309#M11345</guid>
      <dc:creator>macaire</dc:creator>
      <dc:date>2010-02-17T14:11:32Z</dc:date>
    </item>
  </channel>
</rss>

