<?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 Hi Igor, in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138056#M26014</link>
    <description>&lt;P&gt;Hi Igor,&lt;/P&gt;

&lt;P&gt;I don't compare pack format.&lt;BR /&gt;
	I compare Magnitude after using&amp;nbsp;ippiMagnitudePack_32f_C1R().&lt;BR /&gt;
	So the output is only a floating point array of numbers.&lt;/P&gt;

&lt;P&gt;At the end I want array at the size of the image with the magnitude of the DFT.&lt;/P&gt;

&lt;P&gt;How could one achieve that?&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
    <pubDate>Mon, 09 Oct 2017 15:13:24 GMT</pubDate>
    <dc:creator>Royi</dc:creator>
    <dc:date>2017-10-09T15:13:24Z</dc:date>
    <item>
      <title>Using 2D DFT Transformation in Intel IPP 8.2 (Image DFT)</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138054#M26012</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I'm comparing the results of the magnitude of DFT Transform of Intel&amp;nbsp;DFTFwd to MATLAB's fft.&lt;/P&gt;

&lt;P&gt;The input is Real Image in 32fC1 format.&lt;BR /&gt;
	The code snippet is:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;int sizeSpec;
int sizeInit;
int sizeBuffer;
/// get sizes for required buffers
	IppStatus status = ippiDFTGetSize_R_32f(mI.size_, IPP_FFT_DIV_FWD_BY_N, ippAlgHintNone,
                   &amp;amp;sizeSpec, &amp;amp;sizeInit, &amp;amp;sizeBuffer);

    /// allocate memory for required buffers
    IppiDFTSpec_R_32f* pMemSpec = (IppiDFTSpec_R_32f*)ippMalloc(sizeSpec);

Ipp8u* pMemInit   = NULL;
Ipp8u* pMemBuffer = NULL;
    if (sizeInit &amp;gt; 0)
         pMemInit = (Ipp8u*)ippMalloc(sizeInit);

    if (sizeBuffer &amp;gt; 0)
         pMemBuffer = (Ipp8u*)ippMalloc(sizeBuffer);

    /// initialize DFT specification structure
    status = ippiDFTInit_R_32f(mI.size_, IPP_FFT_DIV_FWD_BY_N, ippAlgHintNone, pMemSpec, pMemInit);

    /// free initialization buffer
    if (sizeInit &amp;gt; 0)
        ippFree(pMemInit);

    /// perform forward DFT to put source data to frequency domain
status = ippiDFTFwd_RToPack_32f_C1IR(mI, mI.bytes_step_[0], pMemSpec, pMemBuffer);
status = ippiMagnitudePack_32f_C1R(mI, mI.bytes_step_[0], mI, mI.bytes_step_[0], mI.size_);
//status = ippiPhasePack_32f_C1R(mI, mI.bytes_step_[0], mI, mI.bytes_step_[0], mI.size_);

/// ...

    /// free buffers
    if (sizeBuffer &amp;gt; 0)
        ippFree(pMemBuffer);

    ippFree(pMemSpec);
}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The result is different from MATLAB's (In the bottom right &lt;STRONG&gt;quadrant&lt;/STRONG&gt;).&lt;BR /&gt;
	I also tried the phase and got it is different as well (Again, all perfect but certain quadrant).&lt;/P&gt;

&lt;P&gt;Any idea what's happening?&lt;BR /&gt;
	Have I missed something?&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2017 19:35:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138054#M26012</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-10-08T19:35:39Z</dc:date>
    </item>
    <item>
      <title>Hi Royi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138055#M26013</link>
      <description>&lt;P&gt;Hi Royi,&lt;/P&gt;

&lt;P&gt;do you use Pack format for Matlab code too? Do you know the difference between Pack, Perm, CCS and complex FFT/DFT result representation? It is described in details in the IPP manual.&lt;/P&gt;

&lt;P&gt;PS Matlab uses IPP FFT/DFT implementation internally.&lt;/P&gt;

&lt;P&gt;Regards, Igor&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 14:02:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138055#M26013</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2017-10-09T14:02:20Z</dc:date>
    </item>
    <item>
      <title>Hi Igor,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138056#M26014</link>
      <description>&lt;P&gt;Hi Igor,&lt;/P&gt;

&lt;P&gt;I don't compare pack format.&lt;BR /&gt;
	I compare Magnitude after using&amp;nbsp;ippiMagnitudePack_32f_C1R().&lt;BR /&gt;
	So the output is only a floating point array of numbers.&lt;/P&gt;

&lt;P&gt;At the end I want array at the size of the image with the magnitude of the DFT.&lt;/P&gt;

&lt;P&gt;How could one achieve that?&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2017 15:13:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138056#M26014</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-10-09T15:13:24Z</dc:date>
    </item>
    <item>
      <title>Hi Royi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138057#M26015</link>
      <description>&lt;P&gt;Hi Royi,&lt;/P&gt;

&lt;P&gt;take a look at the IPP manual, please,&amp;nbsp;- it states (for &lt;SPAN class="fontstyle0"&gt;&lt;FONT color="#0860a8"&gt;MagnitudePack&lt;/FONT&gt;&lt;/SPAN&gt;): "&lt;FONT size="2"&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;This function computes magnitude of elements of the source image &lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN class="fontstyle2"&gt;&lt;EM&gt;pSrc &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;given in &lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;FONT face="Verdana"&gt;&lt;SPAN class="fontstyle0" style="color: rgb(8, 96, 168);"&gt;Real - Complex Packed (RCPack2D) Format &lt;/SPAN&gt;&lt;SPAN class="fontstyle0"&gt;and stores results in the destination image &lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN class="fontstyle2"&gt;&lt;EM&gt;pDst&lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;."&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;Pack format is based on DFT/FFT symmetry for real input and stores only half of result as the second half is just the&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;mirror reflection&lt;FONT size="2"&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt; of first half. If you&amp;nbsp;need the same result as Matlab provides - you should use "RToC" DFT/FFT and&amp;nbsp;magnitude for complex "image", or should unpack packed format to its complex representation with&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT color="#0860a8"&gt;PackToCplxExtend&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR style="text-transform: none; line-height: normal; text-indent: 0px; letter-spacing: normal; font-style: normal; font-variant: normal; font-weight: normal; word-spacing: 0px; white-space: normal; orphans: 2; widows: 2; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" /&gt;
	&lt;FONT size="2"&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;function.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="2"&gt;&lt;SPAN class="fontstyle0"&gt;&lt;FONT face="Verdana"&gt;regards, Igor&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 14:02:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138057#M26015</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2017-10-10T14:02:36Z</dc:date>
    </item>
    <item>
      <title>Igor,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138058#M26016</link>
      <description>&lt;P&gt;Igor,&lt;/P&gt;

&lt;P&gt;Either the function doesn't make sense or you're assuming I didn't read.&lt;/P&gt;

&lt;P&gt;Let's say our image is 100 x 100.&lt;BR /&gt;
	So its DFT is also 100 x 100 array of complex numbers.&lt;/P&gt;

&lt;P&gt;In order to calculate the magnitude you could run on each element in the array (Complex Element) and calculate it.&lt;BR /&gt;
	Namely the Magnitude of the DFT of an 100 x 100 image is a 100 x 100 array of real numbers.&lt;/P&gt;

&lt;P&gt;Now, the packed format says if the image is real there is a redundancy in its DFT (Conjugate Symmetry).&lt;BR /&gt;
	Hence one could store the DFT of real image using real numbers in the same size of array (100 x 100).&lt;/P&gt;

&lt;P&gt;But the magnitude calculation must yield the same result as above.&lt;BR /&gt;
	This is why you created 'ippiMagnitudePack_32f_C1R()`.&lt;BR /&gt;
	According to documentation it should create an array of 100 x 100 (Same as the original image) of the image DFT Magnitude as one would do the "Long Way". Otherwise, what's the point?&lt;/P&gt;

&lt;P&gt;Igor,&lt;BR /&gt;
	Please feel free to share code with us which just give us what we need using IPP.&lt;BR /&gt;
	We followed the example in the site. The result doesn't make sense.&lt;BR /&gt;
	Pay attention we are not comparing a packed array of Intel IPP to MATLAB.&lt;BR /&gt;
	We compare the Magnitude Array of both (Which should be identical up to numerical issues) and Intel's has only 1 quadrant which is weird.&lt;/P&gt;

&lt;P&gt;We read about the pack format, but it is just a format, if functions are adapted to it, you expect the result to be independent of the format.&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;

&lt;P&gt;&lt;IMG alt="" src="https://i.imgur.com/urcdNRQ.png" /&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Oct 2017 15:00:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138058#M26016</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-10-10T15:00:00Z</dc:date>
    </item>
    <item>
      <title>Hello,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138059#M26017</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;Anyone could assist with this?&lt;/P&gt;

&lt;P&gt;It seems the function Magnitude, though is documented to be aware of the packed format does something it shouldn't and mess with the quadrant.&lt;/P&gt;

&lt;P&gt;Any assistance?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 13:42:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138059#M26017</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-10-13T13:42:42Z</dc:date>
    </item>
    <item>
      <title>Hi Royi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138060#M26018</link>
      <description>&lt;P&gt;Hi Royi,&lt;/P&gt;

&lt;P&gt;according to your pictures it seems to be a real bug. We will investigate this issue and I'll provide you an update (in ~1-3 weeks).&lt;/P&gt;

&lt;P&gt;Regards, Igor.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 16:57:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138060#M26018</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2017-10-17T16:57:22Z</dc:date>
    </item>
    <item>
      <title>Hi Igor,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138061#M26019</link>
      <description>&lt;P&gt;Hi Igor,&lt;/P&gt;

&lt;P&gt;Yea, we also think it is some kind of a bug.&lt;/P&gt;

&lt;P&gt;It's important for us so please let us know as soon as possible.&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2017 08:59:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138061#M26019</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-10-21T08:59:44Z</dc:date>
    </item>
    <item>
      <title>Hi,
Any update on this?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138062#M26020</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Any update on this?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 10:04:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138062#M26020</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-11-17T10:04:33Z</dc:date>
    </item>
    <item>
      <title>Hi Royi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138063#M26021</link>
      <description>&lt;P&gt;Hi Royi,&lt;/P&gt;

&lt;P&gt;Safe and correct in-place operation in IPP is guaranteed only for functions with suffix "_I". If function doesn't have such suffix - we don't guarantee correct behavior for pSrc == pDst. In&amp;nbsp;your case you've faced with such issue. If you use this function in correct mode - separated non-overlapping source and destination - the result will be correct.&lt;/P&gt;

&lt;P&gt;regards, Igor.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 12:02:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138063#M26021</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2017-11-17T12:02:45Z</dc:date>
    </item>
    <item>
      <title>Hi Igor,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138064#M26022</link>
      <description>&lt;P&gt;Hi Igor,&lt;/P&gt;

&lt;P&gt;We tried that as well and the result is the same.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 17:00:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138064#M26022</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-11-17T17:00:41Z</dc:date>
    </item>
    <item>
      <title>Hi Royi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138065#M26023</link>
      <description>&lt;P&gt;Hi Royi,&lt;/P&gt;

&lt;P&gt;please prove your last statement (some reproducer appreciated): we've performed double check (comparison with Matlab and comparison with CToC flavor) - MagnitudePack doesn't show any issues.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 15:33:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138065#M26023</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2017-11-20T15:33:38Z</dc:date>
    </item>
    <item>
      <title>We moved to Intel IPP 2018</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138066#M26024</link>
      <description>&lt;P&gt;We moved to Intel IPP 2018 Update 1 and things seems to work (The error is 1e-4, compared to MATLAB).&lt;BR /&gt;
	We're not sure about the previous version as we don't have access to it anymore.&lt;/P&gt;

&lt;P&gt;There is a different issue bothering us.&lt;BR /&gt;
	Once we have the data we decompose it into Magnitude and Phase using:&lt;/P&gt;

&lt;P&gt;ippiDFTFwd_RToPack_32f_C1IR(mI, mI.bytesStep, pMemSpec, pMemBuffer);&lt;BR /&gt;
	&amp;nbsp;ippiMagnitudePack_32f_C1R&amp;nbsp; (mI, mI.bytesStep, mO.Plane(0), mO.bytesStep, mO.size_, pMagBuffer);&lt;BR /&gt;
	&amp;nbsp;ippiPhasePack_32f_C1R&amp;nbsp; &amp;nbsp; &amp;nbsp; (mI, mI.bytesStep, mO.Plane(1), mO.bytesStep, mI.size_, pPhaseBuffer);&lt;/P&gt;

&lt;P&gt;The problem is once we have data in form of Phase and Magnitude we have no way going back.&lt;BR /&gt;
	Assume we keep the properties of the data such that the inverse is real, we still don't have a built in function to go back.&lt;/P&gt;

&lt;P&gt;What's the recommended solution?&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Dec 2017 11:42:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138066#M26024</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-12-16T11:42:38Z</dc:date>
    </item>
    <item>
      <title>Igor,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138067#M26025</link>
      <description>&lt;P&gt;Igor,&lt;/P&gt;

&lt;P&gt;Any assistance with the above?&lt;/P&gt;</description>
      <pubDate>Sat, 23 Dec 2017 17:10:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138067#M26025</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2017-12-23T17:10:41Z</dc:date>
    </item>
    <item>
      <title>Igor / Anyone form Intel,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138068#M26026</link>
      <description>&lt;P&gt;Igor / Anyone form Intel,&lt;/P&gt;

&lt;P&gt;Any assistance on this?&lt;/P&gt;

&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2018 13:13:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Using-2D-DFT-Transformation-in-Intel-IPP-8-2-Image-DFT/m-p/1138068#M26026</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2018-02-16T13:13:31Z</dc:date>
    </item>
  </channel>
</rss>

