<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5125536270618165078</id><updated>2011-11-27T15:53:20.874-08:00</updated><category term='fullduplex'/><category term='linux'/><category term='audio'/><category term='oss'/><category term='photo'/><category term='intrinsics'/><category term='optimization'/><category term='alsa'/><category term='gcc'/><category term='code'/><category term='poll'/><category term='winter'/><category term='SIMD'/><title type='text'>vrm's hack &amp; code</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vrm-vrm.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://vrm-vrm.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Julien Vermillard</name><uri>http://www.blogger.com/profile/13468201659036997701</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://2.bp.blogspot.com/-_lyQly52NNM/Tn9gNZ9vWJI/AAAAAAAAAhw/rDa8jOjdHuk/s220/avatar.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5125536270618165078.post-957074925093064104</id><published>2011-04-18T08:01:00.000-07:00</published><updated>2011-04-19T00:27:16.525-07:00</updated><title type='text'>Adding a PCA9555 GPIO extender on a Linux based machine</title><content type='html'>Today I'm adding a PCA9555 http://www.nxp.com/documents/data_sheet/PCA9555.pdf to my Blackfin based board.&lt;br /&gt;&lt;br /&gt;The PCA9555 is a 16 GPIO extender on I2C bus.&lt;br /&gt;&lt;br /&gt;The new linux GPIO lib is very smart and easy to extend. What you need to do is just wire the chip on the I2C bus (sometimes called TWI), and add the configuration in your machine code.&lt;br /&gt;&lt;br /&gt;To be added to your arch/xxx/mach-xxxx/mach-mymachine.c :&lt;br /&gt;&lt;br /&gt;to includes : &lt;br /&gt;#include &lt;linux/i2c/pca953x.h&gt; &lt;br /&gt;&lt;br /&gt;The platform data of your chip  :&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;#if defined(CONFIG_I2C) || defined(CONFIG_GPIO_PCA953X)&lt;br /&gt;/* PCA9555 */&lt;br /&gt;static struct pca953x_platform_data stamp_gpio_ext_pdata = {&lt;br /&gt;        .gpio_base = -1, // auto-guess the GPIO number&lt;br /&gt;};&lt;/pre&gt;Of course you need to add one for each PCA9555 you want to add on the bus.&lt;br /&gt;&lt;br /&gt;Now add the device to your I2C bus declaration.&lt;br /&gt;You probably have something like :&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;static struct i2c_board_info __initdata bfin_i2c_board_info[] = {&lt;br /&gt; { ... }, { ... }&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;Just add to the array your chip :&lt;br /&gt;&lt;pre&gt;{&lt;br /&gt;  I2C_BOARD_INFO("pca9555",0x20),&lt;br /&gt;  .platform_data = &amp;stamp_gpio_ext_pdata,&lt;br /&gt; },&lt;/pre&gt;0x20 is the I2C address of the chip, you can guess it reading the datasheet or using the "i2cdetect" utility. For the PCA9555 the address is configured by the pin A0,A1,A2, with all threee are connected to zero volt, then the address is 0x20.&lt;br /&gt;&lt;br /&gt;Check the PCA support in the kernel config menu (device-&gt;gpio), compile, run it and it's done !&lt;br /&gt;Be carefull the new GPIO will be added at some very high number (240 in my case), you can find it by looking in /sys/class/gpio/ the new GPIO extender should be there.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5125536270618165078-957074925093064104?l=vrm-vrm.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vrm-vrm.blogspot.com/feeds/957074925093064104/comments/default' title='Publier les commentaires'/><link rel='replies' type='text/html' href='http://vrm-vrm.blogspot.com/2011/04/adding-pca9555-gpio-extender-on-linux.html#comment-form' title='0 commentaires'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/957074925093064104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/957074925093064104'/><link rel='alternate' type='text/html' href='http://vrm-vrm.blogspot.com/2011/04/adding-pca9555-gpio-extender-on-linux.html' title='Adding a PCA9555 GPIO extender on a Linux based machine'/><author><name>Julien Vermillard</name><uri>http://www.blogger.com/profile/13468201659036997701</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://2.bp.blogspot.com/-_lyQly52NNM/Tn9gNZ9vWJI/AAAAAAAAAhw/rDa8jOjdHuk/s220/avatar.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5125536270618165078.post-1811444909730708571</id><published>2009-11-01T12:42:00.000-08:00</published><updated>2009-11-01T12:47:10.417-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='photo'/><category scheme='http://www.blogger.com/atom/ns#' term='winter'/><title type='text'>Winter</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.flickr.com/photos/38037819@N00/4049937210/"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 240px; height: 240px;" src="http://farm4.static.flickr.com/3249/4049937210_7cb49316c0_m.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5125536270618165078-1811444909730708571?l=vrm-vrm.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vrm-vrm.blogspot.com/feeds/1811444909730708571/comments/default' title='Publier les commentaires'/><link rel='replies' type='text/html' href='http://vrm-vrm.blogspot.com/2009/11/winter.html#comment-form' title='0 commentaires'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/1811444909730708571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/1811444909730708571'/><link rel='alternate' type='text/html' href='http://vrm-vrm.blogspot.com/2009/11/winter.html' title='Winter'/><author><name>Julien Vermillard</name><uri>http://www.blogger.com/profile/13468201659036997701</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://2.bp.blogspot.com/-_lyQly52NNM/Tn9gNZ9vWJI/AAAAAAAAAhw/rDa8jOjdHuk/s220/avatar.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://farm4.static.flickr.com/3249/4049937210_7cb49316c0_t.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5125536270618165078.post-1906197197897915791</id><published>2009-11-01T12:01:00.000-08:00</published><updated>2009-11-02T07:40:36.207-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='poll'/><category scheme='http://www.blogger.com/atom/ns#' term='oss'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='code'/><category scheme='http://www.blogger.com/atom/ns#' term='alsa'/><category scheme='http://www.blogger.com/atom/ns#' term='audio'/><category scheme='http://www.blogger.com/atom/ns#' term='fullduplex'/><title type='text'>ALSA</title><content type='html'>I ported an old Linux audio program, a simple Voice-over-IP &amp;amp; stereo demuxing application, from &lt;a href="http://en.wikipedia.org/wiki/Open_Sound_System"&gt;OSS&lt;/a&gt; to &lt;a href="http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture"&gt;ALSA&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;First impression of ALSA libasound : the documentation sucks, well, no, the documentation really sucks monkey rods ! I wonder why the wannabe 1st Linux audio API have such a pathetic API doc, example : &lt;a href="http://www.alsa-project.org/alsa-doc/alsa-lib/group___p_c_m___h_w___params.html#gf5e53bcb748185a4da3b8538720a5792"&gt;snd_pcm_hw_params_set_period_time_near&lt;/a&gt;. And this is not an exception, the whole API go such poor doxygen comments. Very frustating for someone who is maintaining a library, and made a huge effort on javadocing lazy coder code.&lt;br /&gt;&lt;br /&gt;About the API itself, well.. it's looking a bit over-complex near OSS, but it's no rocket science once you found the good examples for your poll based full duplex program  : &lt;a href="http://git.xiph.org/?p=speex.git;a=tree;f=speexclient;h=24a774776a8ab8d5808023af15a44626700f0cf3;hb=HEAD"&gt;speexclient&lt;/a&gt;. But once it was ported the perfs are awesome, far of OSS and far of Windows sound system. I was able to achieve 5ms latency with a 8 inputs/8 outputs audio card, without using a rt patched kernel, nor huge optimization.&lt;br /&gt;&lt;br /&gt;Well it's a pity you got a such technically impressive audio system ruined by poor doc &amp; API.. no wonder why we have Arts, ESD, Pulseaudio, Jackd (the guys who thinks everybody have floating point CPU).&lt;br /&gt;&lt;br /&gt;My version of speexclient, transformed for being a simple fullduplex passthru audio program (I removed all the speex encoding/decoding part and the network code for simplicity).&lt;br /&gt;&lt;br /&gt;You still need speex for it's very good jitter buffer and alsa_device.c (can be found of speex GIT repository)&lt;br /&gt;&lt;pre type="syntaxhighlighter" class="brush: cpp"&gt;&lt;br /&gt;/***************************************************************************&lt;br /&gt; Copyright (C) 2004-2006 by Jean-Marc Valin&lt;br /&gt; Copyright (C) 2006 Commonwealth Scientific and Industrial Research&lt;br /&gt; Organisation (CSIRO) Australia&lt;br /&gt;&lt;br /&gt; Redistribution and use in source and binary forms, with or without&lt;br /&gt; modification, are permitted provided that the following conditions&lt;br /&gt; are met:&lt;br /&gt;&lt;br /&gt; - Redistributions of source code must retain the above copyright&lt;br /&gt; notice, this list of conditions and the following disclaimer.&lt;br /&gt;&lt;br /&gt; - Redistributions in binary form must reproduce the above copyright&lt;br /&gt; notice, this list of conditions and the following disclaimer in the&lt;br /&gt; documentation and/or other materials provided with the distribution.&lt;br /&gt;&lt;br /&gt; - Neither the name of the Xiph.org Foundation nor the names of its&lt;br /&gt; contributors may be used to endorse or promote products derived from&lt;br /&gt; this software without specific prior written permission.&lt;br /&gt;&lt;br /&gt; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS&lt;br /&gt; ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT&lt;br /&gt; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR&lt;br /&gt; A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR&lt;br /&gt; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,&lt;br /&gt; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,&lt;br /&gt; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR&lt;br /&gt; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF&lt;br /&gt; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING&lt;br /&gt; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS&lt;br /&gt; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt; &lt;br /&gt; ****************************************************************************/&lt;br /&gt;&lt;br /&gt;#ifdef HAVE_CONFIG_H&lt;br /&gt;#include &lt;config.h&gt;&lt;br /&gt;#endif&lt;br /&gt;&lt;br /&gt;#include &lt;stdlib.h&gt;&lt;br /&gt;#include &lt;sys/types.h&gt;&lt;br /&gt;#include &lt;sys/socket.h&gt;&lt;br /&gt;#include &lt;netinet/in.h&gt;&lt;br /&gt;#include &lt;arpa/inet.h&gt;&lt;br /&gt;#include &lt;netdb.h&gt;&lt;br /&gt;#include &lt;stdio.h&gt;&lt;br /&gt;#include &lt;unistd.h&gt; /* close() */&lt;br /&gt;#include &lt;string.h&gt; /* memset() */&lt;br /&gt;&lt;br /&gt;#include "alsa_device.h"&lt;br /&gt;&lt;br /&gt;#include &lt;speex/speex_jitter.h&gt;&lt;br /&gt;&lt;br /&gt;#include &lt;sched.h&gt;&lt;br /&gt;&lt;br /&gt;#define MAX_MSG 1500&lt;br /&gt;&lt;br /&gt;#define SAMPLING_RATE 16000&lt;br /&gt;#define FRAME_SIZE 320&lt;br /&gt;&lt;br /&gt;int main(int argc, char *argv[]) {&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; int nfds;&lt;br /&gt; struct pollfd *pfds;&lt;br /&gt;&lt;br /&gt; AlsaDevice *audio_dev;&lt;br /&gt;&lt;br /&gt; JitterBuffer * jitterBuffer = jitter_buffer_init(FRAME_SIZE * 2);&lt;br /&gt; int jitterTime = 0;&lt;br /&gt;&lt;br /&gt; /* Setup audio device, forced to pughw for avoiding pulseaudio */&lt;br /&gt; audio_dev = alsa_device_open("plughw:0,0", SAMPLING_RATE, 1, FRAME_SIZE);&lt;br /&gt;&lt;br /&gt; struct sched_param param;&lt;br /&gt; /*param.sched_priority = 40; */&lt;br /&gt; param.sched_priority = sched_get_priority_min(SCHED_FIFO);&lt;br /&gt; if (sched_setscheduler(0, SCHED_FIFO, &amp;param))&lt;br /&gt;  perror("sched_setscheduler");&lt;br /&gt;&lt;br /&gt; /* Setup all file descriptors for poll()ing */&lt;br /&gt; nfds = alsa_device_nfds(audio_dev);&lt;br /&gt; pfds = malloc(sizeof(*pfds) * (nfds));&lt;br /&gt; alsa_device_getfds(audio_dev, pfds, nfds);&lt;br /&gt;&lt;br /&gt; alsa_device_start(audio_dev);&lt;br /&gt;&lt;br /&gt; /* Infinite loop on capture, playback */&lt;br /&gt; while (1) {&lt;br /&gt;  /* Wait for either 1) capture 2) playback */&lt;br /&gt;  poll(pfds, nfds, -1);&lt;br /&gt;&lt;br /&gt;  /* Ready to play a frame (playback) */&lt;br /&gt;  if (alsa_device_playback_ready(audio_dev, pfds, nfds)) {&lt;br /&gt;   short pcm[FRAME_SIZE];&lt;br /&gt;&lt;br /&gt;   /* Get audio from the jitter buffer */&lt;br /&gt;   JitterBufferPacket p;&lt;br /&gt;   p.data = (char *)pcm;&lt;br /&gt;   p.len = FRAME_SIZE * 2;&lt;br /&gt;&lt;br /&gt;   // eat a buffer&lt;br /&gt;   int res=jitter_buffer_get(jitterBuffer,&amp;p,FRAME_SIZE * 2,NULL);&lt;br /&gt;   if(res != JITTER_BUFFER_OK ) {&lt;br /&gt;    memset(pcm,0,FRAME_SIZE*2);&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;   jitter_buffer_tick(jitterBuffer);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   /* Playback the audio and reset the echo canceller if we got an underrun */&lt;br /&gt;   if (alsa_device_write(audio_dev, pcm, FRAME_SIZE)) {&lt;br /&gt;    printf("underrun\n");&lt;br /&gt;   }&lt;br /&gt;  }&lt;br /&gt;  /* Audio available from the soundcard (capture) */&lt;br /&gt;  if (alsa_device_capture_ready(audio_dev, pfds, nfds)) {&lt;br /&gt;   short pcm[FRAME_SIZE];&lt;br /&gt;&lt;br /&gt;   /* Get audio from the soundcard */&lt;br /&gt;   alsa_device_read(audio_dev, pcm, FRAME_SIZE);&lt;br /&gt;&lt;br /&gt;   JitterBufferPacket p;&lt;br /&gt;   p.data = (char*)(pcm);&lt;br /&gt;   p.len = FRAME_SIZE*2;&lt;br /&gt;   jitterTime += FRAME_SIZE*2;&lt;br /&gt;   p.timestamp = jitterTime;&lt;br /&gt;   p.span = FRAME_SIZE*2;&lt;br /&gt;   jitter_buffer_put(jitterBuffer, &amp;p);&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; return 0;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5125536270618165078-1906197197897915791?l=vrm-vrm.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vrm-vrm.blogspot.com/feeds/1906197197897915791/comments/default' title='Publier les commentaires'/><link rel='replies' type='text/html' href='http://vrm-vrm.blogspot.com/2009/11/alsa.html#comment-form' title='0 commentaires'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/1906197197897915791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/1906197197897915791'/><link rel='alternate' type='text/html' href='http://vrm-vrm.blogspot.com/2009/11/alsa.html' title='ALSA'/><author><name>Julien Vermillard</name><uri>http://www.blogger.com/profile/13468201659036997701</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://2.bp.blogspot.com/-_lyQly52NNM/Tn9gNZ9vWJI/AAAAAAAAAhw/rDa8jOjdHuk/s220/avatar.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5125536270618165078.post-6700185100512279647</id><published>2009-10-26T13:30:00.000-07:00</published><updated>2009-11-02T02:46:54.742-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gcc'/><category scheme='http://www.blogger.com/atom/ns#' term='code'/><category scheme='http://www.blogger.com/atom/ns#' term='optimization'/><category scheme='http://www.blogger.com/atom/ns#' term='SIMD'/><category scheme='http://www.blogger.com/atom/ns#' term='intrinsics'/><title type='text'>GCC intrinsics for SIMD</title><content type='html'>I made some test with gcc intrinsics, for generating &lt;a href="http://en.wikipedia.org/wiki/SIMD"&gt;SIMD&lt;/a&gt; code (aka MMX, SSE, SSE2, SSE3, Neon). first impression documentation is really &lt;a href="http://www.google.fr/#hl=en&amp;source=hp&amp;q=gcc+intrinsics"&gt;sparse&lt;/a&gt; don't count on official gcc &lt;a href="http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Vector-Extensions.html#Vector-Extensions"&gt;docs&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;I'll post an example of my experiments : applying a level modification to eight channels of audio samples. Typically a good usage of SIMD code. Once you understand the few doc and examples there is present on Internet, it's quite easy to write vectorized code. Much easier than writing it in assembly. But... there is a huge but performances aren't there ! Intrinsic code is confusing gcc. Basicly : gcc SIMD code run slower than gcc non-SIMD code. And the SIMD code is slower with full optimization turned on... perhaps the bad result explain why the documentation is not completed ;) Look like gcc optimizator is confusing himself.. To be continued when I find some time to make some assembly post-mortem.&lt;br /&gt;&lt;br /&gt;&lt;pre type="syntaxhighlighter" class="brush: cpp"&gt;&lt;br /&gt;&lt;br /&gt;typedef float v4sf __attribute__ ((vector_size (16))); // vector of four single float&lt;br /&gt;&lt;br /&gt;// this structure is here for help you to access the different vector values&lt;br /&gt;// the gcc v4sf type isn't able to provide simple acessors..&lt;br /&gt;&lt;br /&gt;union f4vector&lt;br /&gt;{&lt;br /&gt;  v4sf v;&lt;br /&gt;  float f[4];&lt;br /&gt;} ;&lt;br /&gt;&lt;br /&gt;// declaration of a float vector of four 32bit float&lt;br /&gt;union f4vector values;&lt;br /&gt;&lt;br /&gt;// load the values using the convenient union&lt;br /&gt;values.f[0]=1.0;&lt;br /&gt;values.f[1]=2.0;&lt;br /&gt;values.f[2]=3.0;&lt;br /&gt;values.f[3]=4.0;&lt;br /&gt;&lt;br /&gt;// coeficient&lt;br /&gt;coef.f[0]=0.3;&lt;br /&gt;coef.f[1]=0.4;&lt;br /&gt;coef.f[2]=0.5;&lt;br /&gt;coef.f[3]=0.6;&lt;br /&gt;&lt;br /&gt;// now multiply the vectors (using the .v accessor):&lt;br /&gt;values.v = values.v * coef.v;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you use the good flags for gcc (-mcpu=pentium3 -mmmx -msse), &lt;br /&gt;simd code will be generated.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5125536270618165078-6700185100512279647?l=vrm-vrm.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vrm-vrm.blogspot.com/feeds/6700185100512279647/comments/default' title='Publier les commentaires'/><link rel='replies' type='text/html' href='http://vrm-vrm.blogspot.com/2009/10/gcc-intrinsics.html#comment-form' title='0 commentaires'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/6700185100512279647'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5125536270618165078/posts/default/6700185100512279647'/><link rel='alternate' type='text/html' href='http://vrm-vrm.blogspot.com/2009/10/gcc-intrinsics.html' title='GCC intrinsics for SIMD'/><author><name>Julien Vermillard</name><uri>http://www.blogger.com/profile/13468201659036997701</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='http://2.bp.blogspot.com/-_lyQly52NNM/Tn9gNZ9vWJI/AAAAAAAAAhw/rDa8jOjdHuk/s220/avatar.jpg'/></author><thr:total>0</thr:total></entry></feed>
