From: Seika v. O. <sei...@gm...> - 2007-03-14 07:32:15
|
How can we solve the SSE issues? I'm not very familiar with that, but I'm willing to learn :), unfortunately I can't find any documentation/tutorial for gcc/g++ to use SSE. Is it worth to implement a custom SSE implementation, doesn't the compiler optimize such things correctly? 2007/3/13, Marco Antonio G=F3mez Mart=EDn <ma...@fd...>: > Hi all, > > > The second patch was already mentioned before by marco, it adds an > > include for > > algorithm to narray.h. I'm not sure why it wasn't not yet within the > > SVN but I think > > something was wrong the way he tried to commit it. > > Actually, I didn't commit the patches I sent, because I have no > user/password in SVN. > That's the reason why I sent the patches to the list, but I had n= o > answers :'( I hope you have more luck :-p > > By the way, I did not mention the error you solve in the makefile= .py > patch, but I am agree with it, and I just hope someone commit it to the > repository... > > Marco > > > Please comment. :-) > > > > > > -----------------------------------------------------------------------= - > > > > Index: code/nebula2/inc/util/narray.h > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > --- code/nebula2/inc/util/narray.h (Revision 3233) > > +++ code/nebula2/inc/util/narray.h (Arbeitskopie) > > @@ -17,6 +17,8 @@ > > */ > > #include "kernel/ntypes.h" > > > > +#include <algorithm> > > + > > //--------------------------------------------------------------------= ---------- > > template<class TYPE> class nArray > > { > > > > > > -----------------------------------------------------------------------= - > > > > Index: buildsys3/generators/makefile.py > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > --- buildsys3/generators/makefile.py (Revision 3233) > > +++ buildsys3/generators/makefile.py (Arbeitskopie) > > @@ -107,7 +107,7 @@ > > # spring clean > > makeFile.write("clean: \n") > > makeFile.write("\t$(RM) $(N_TARGETDIR)*\n") > > - makeFile.write("\t$(RM) $(N_INTERDIR)\n") > > + makeFile.write("\t$(RM) $(N_INTERDIR)*\n") > > > > makeFile.write("default: all\n") > > > > > > > > -----------------------------------------------------------------------= - > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share= your > > opinions on IT & business topics through brief surveys-and earn cash > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > > > > > -----------------------------------------------------------------------= - > > > > > > *** NOTE: To reply to the list use "reply to all", *** > > *** to reply direct to the sender use "reply" *** > > _______________________________________________ > > Nebuladevice-discuss mailing list > > Neb...@li... > > https://lists.sourceforge.net/lists/listinfo/nebuladevice-discuss > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share y= our > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > *** NOTE: To reply to the list use "reply to all", *** > *** to reply direct to the sender use "reply" *** > _______________________________________________ > Nebuladevice-discuss mailing list > Neb...@li... > https://lists.sourceforge.net/lists/listinfo/nebuladevice-discuss > --=20 -Seika |