Re: [Numpy-discussion] Code for compatibility with gfortran, license issues

2009-06-29 Thread Hanni Ali
Hi David, Sounds very interesting, have you noticed any improvement in performance ove using the builtin numpy blas lite? If you need someone to test on Windows 64 I would be happy to do so. Hanni 2009/6/29 David Cournapeau > Hi, > >I started working on a new approach for windows 64 bits

Re: [Numpy-discussion] 64-bit numpy questions?

2009-03-03 Thread Hanni Ali
> > Is anyone using numpy in 64-bit environments on a day-to-day basis? Windows 2003 64 >Are you using very large arrays, i.e. over 2G in size? Yes without any problems, using Python 2.6. Hanni ___ Numpy-discussion mailing list Numpy-discussio

Re: [Numpy-discussion] PyArray_SETITEM with object arrays in Cython

2009-02-11 Thread Hanni Ali
Hi Wes, I do not profess to be an expert, but I have been off loading a fair number of loops to C from Python code and achieved significant improvements most have been of the following form (which I have found to be the fastest): size = *incomingArrayObj->dimensions; r_dptr = PyArray_DATA(result

Re: [xml] libxml2 error compiling for Visual Studio 2008 (error U1077)

2009-02-09 Thread Hanni Ali
Did you run vcvarsall.bat or open a VS Comand Window first, this looks like an environment error. Hanni 2009/2/9 Paulo Flabiano Smorigo > Hi everybody, > > I started to use libxml2 to exchange informations between my > application made on linux and the other made on Visual Studio 2008. > The li

Re: [Numpy-discussion] Building on WinXP 64-bit, Intel Compilers

2009-02-02 Thread Hanni Ali
Hi David, I used free trials of the Intel and PGI compilers to try to compile an external BLAS/LAPACK in conjunction with VS 2008. I also had no problems getting the C code to compile, but couldn't get linking to work succesfully with fortran stuff. I would not be surprised if we could get a licen

Re: [Numpy-discussion] Building on WinXP 64-bit, Intel Compilers

2009-01-30 Thread Hanni Ali
I have been meaning to chip in but so far hadn't got to it so hear goes. In response to this particular issue I currently use numpy (1.2.1) built with msvc VS 2008 by simply commenting out these definitions in the numpy\core\src\umathmodule.c.src That works just fine and allows me to use the buil

[Numpy-discussion] PyArray_Zeros

2009-01-27 Thread Hanni Ali
Hi, I have been having trouble with the PyArray_Zeros/PyArray_ZEROS functions. I cannot seem to create an array using these functions. resultArray = PyArray_ZEROS(otherArray->nd, otherArray->dimensions, NPY_DOUBLE, 0); I would have thought this would have created an array the same shape as the o

Re: [Numpy-discussion] List of Lists in C

2009-01-26 Thread Hanni Ali
Correct, however other areas of the application expect an empty list to be present, otherwise I would have used None. 2009/1/26 Matthieu Brucher > 2009/1/26 Hanni Ali : > > Yes fair point, but when it's a empty list and new elements are replaced > > with a new lis

Re: [Numpy-discussion] List of Lists in C

2009-01-26 Thread Hanni Ali
e list in each element of the > outer list. If you don't want this, use [[] for i in range(5)]. I > don't think there is another way in C either (or too complicated). > > Matthieu > > 2009/1/26 Hanni Ali : > > Hi, > > > > Quick question, I've been d

[Numpy-discussion] List of Lists in C

2009-01-26 Thread Hanni Ali
Hi, Quick question, I've been doing a fair bit of extension writing in C recently, but wondered how best to implement: >>> l = [[]] * 5 to create a list of a given length containing the initialization variable desired. A loop seems the straight forward manner, but I would have thought there was

Re: [Numpy-discussion] python numpy code many times slower than c++

2009-01-21 Thread Hanni Ali
I have been using your profiler extensively and it has contributed to my achieving significant improvements in the application I work on largely due to the usefulness of the line by line breakdown enabling me to easily select the next part of code to work on optimizing. So firstly many thanks for w

Re: [Numpy-discussion] Importance of order when summing values in anarray

2008-12-09 Thread Hanni Ali
Hi Bruce, Ahh, but I would have thought the precision for the array operation would be the same no matter which values I wish to sum? The array is in float64 in all cases. I would not have thought altering the type of the integer values would make any difference as these indices are all below 5 m

Re: [Numpy-discussion] Importance of order when summing values in anarray

2008-12-09 Thread Hanni Ali
ה מקורית- > מאת: [EMAIL PROTECTED] בשם Hanni Ali > נשלח: ג 09-דצמבר-08 16:07 > אל: Discussion of Numerical Python > נושא: [Numpy-discussion] Importance of order when summing values in anarray > > Hi All, > > I have encountered a puzzling issue and I am not certain i

[Numpy-discussion] Importance of order when summing values in an array

2008-12-09 Thread Hanni Ali
Hi All, I have encountered a puzzling issue and I am not certain if this is a mistake of my own doing or not. Would someone kindly just look over this issue to make sure I'm not doing something very silly. So, why would the sum of an array have a different value depending on the order I select th

[Numpy-discussion] Building numpy on Windows 64-bit BLAS/LAPACK

2008-11-21 Thread Hanni Ali
Hi, I have spent some time trying to use different methods to build numpyon Windows 64bit with a version of BLAS/LAPACK other than the inbuilt one (no slur on the inbuilt one it is excellent, I am simply attempting to see if there is any alternative with better performance). The most recent i have

Re: [Numpy-discussion] can't build numpy 1.2.0 under python 2.6 (windows-amd64) using VS9

2008-11-20 Thread Hanni Ali
Hi All, I have reached the point where I really need to get some sort of optimised/accelerated BLAS/LAPACK for windows 64 so have been trying a few different things out to see whether I can get anything usable, today i stumbled across this: http://icl.cs.utk.edu/lapack-for-windows/index.html Has

Re: [Numpy-discussion] can't build numpy 1.2.0 under python 2.6 (windows-amd64) using VS9

2008-10-08 Thread Hanni Ali
Just to note, on the compilation issue, I encountered this a while ago with numpy 1.1.1 and I think Python 2.6b2, again because we wanted to skip Python 2.5 in my organization, largely because it was an issue to get working on 64-bit. I couldn't find anywhere 7.1 was available. We discussed errors

Re: [Numpy-discussion] cannot find numpy 1.2 for python 2.6 on window

2008-10-05 Thread Hanni Ali
Hi David, Yeah nose was an issue, thanks for letting me know about nose compatibility being sorted that's good news as I use it a bit with my testing. I last built 1.1.1 with express for 32bit it went fine (although I think you do have to comment out , I was also able to compile with 2008 full fo

Re: [Numpy-discussion] cannot find numpy 1.2 for python 2.6 on window

2008-10-05 Thread Hanni Ali
Hi Alan, I've been using numpy with 2.6 on amd64 for about 3 months no problem and far more stable on 64-bit than the same combination with 2.5. Daniel, just download the source and compile it yourself. You need to use VS 9.0 for best compatibility with Python and I haven't yet sorted out fast bl

[xml] libxml2 and libxslt compilation for Windows 64-bit

2008-10-03 Thread Hanni Ali
Hi All, Sorry if this double posts, I'm not sure it sent properly yesterday I have successfully used the win32 binaries kindly provided by Igor Zlatkovic in conjunction with the libxml python module to process some xml and applying an xls template to it. However I now need to do this for a 64-bit

[xml] libxml2 and libxslt compilation for Windows 64-bit

2008-10-02 Thread Hanni Ali
Hi All, It seems rude to be asking for advice on compiling for Windows on a Gnome mailing list ;) I have successfully used the win32 binaries kindly provided by Igor Zlatkovic in conjunction with the libxml python module to process some xml and applying an xls template to it. However I now need t

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-09 Thread Hanni Ali
I already was... 2008/9/9 Matthieu Brucher <[EMAIL PROTECTED]> > Use 1./n instead of 1/n. If n is an integer, 1/n equals 0. > > Matthieu > > 2008/9/9 Hanni Ali <[EMAIL PROTECTED]>: > > Hi Matthieu, > > > > Interesting example thanks. I can't howe

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-09 Thread Hanni Ali
> > > I think it is a fallacy to say you prefer accuracy over speed: the > fallacy is in thinking it is binary choice. You care about speed, > because otherwise, you would not use a computer at all, you would do > everything by hand [1]. Floating point is by itself an approximation: it > can not ev

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-09 Thread Hanni Ali
Hi Matthieu, Interesting example thanks. I can't however seem to get anything other than zero for the 100,000 to 1 sum. Cheers, Hanni 2008/9/9 Matthieu Brucher <[EMAIL PROTECTED]> > > I now have a distinct dislike of float values (it'll probably wear off > over > > time), how can the sum of 10

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-08 Thread Hanni Ali
.=200,000.0 not 2array.sum() != 200,000... Just an opinion though Hanni 2008/9/4 David Cournapeau <[EMAIL PROTECTED]> > Hanni Ali wrote: > > Hi, > > > > Is there a way I can set numpy to use dtype='float64' throughout all > > my code or force it to use the

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-04 Thread Hanni Ali
Hi, Is there a way I can set numpy to use dtype='float64' throughout all my code or force it to use the biggest datatype without adding the dtype='float64' to every call to mean, stdev etc.. 2008/9/3 Sebastian Stephan Berg <[EMAIL PROTECTED]> > Hi, > > just guessing here. But numarray seems to

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
We used to care about memory when we were running on 32-bit platforms, but with the move to 64-bit, enabled by the current work, the issue is removed and I will probably be changing everything for more accuracy. Thanks Hanni 2008/9/3 David Cournapeau <[EMAIL PROTECTED]> > Hanni

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
Oh ok, I shall have to find where I did that then. Thanks 2008/9/3 Matthieu Brucher <[EMAIL PROTECTED]> > By default, numpy uses float64, but you told it to use float32 ;) > > Matthieu > > 2008/9/3, Hanni Ali <[EMAIL PROTECTED]>: > > Also can you think of a way

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
think, you can encounter bugs. Least surprise is always > better ;) > > Matthieu > > 2008/9/3, Hanni Ali <[EMAIL PROTECTED]>: > > Sebastian you legend, that seems to be it. > > > > Thank you very much. > > > > >>> matrix.mean(dtype='float64&#

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
Also can you think of a way either dtype is always float64? I have a lot of functions and to add dtype='float64' would require *loads* of testing, whereas if I can set it centrally on the matrix or in the environment that would be so much easier. Hanni 2008/9/3 Hanni Ali <[EM

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
Sebastian you legend, that seems to be it. Thank you very much. >>> matrix.mean(dtype='float64') 0.41582015156745911 What seems odd is that numpy doesn't do this on it's own... 2008/9/3 Sebastian Stephan Berg <[EMAIL PROTECTED]> > Hi, > > just guessing here. But numarray seems to calculate t

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
5], [ 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015, 0.41582015]], type=Float32) >>> matrix.mean() 0.41582015156745911 2008/9/3 David Cournapeau <[EMAIL PROTECTED]> > Hanni Ali wrote: >

Re: [Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
g to > do with the quality of the computation. Numpy only prints a part of a > float value, but fir the computations, it obviously uses the correct > value. All this can be parametrized by using set_printoptions(). > > Matthieu > > 2008/9/3, Hanni Ali <[EMAIL PROTECTED]>: >

[Numpy-discussion] Floating Point Difference between numpy and numarray

2008-09-03 Thread Hanni Ali
Hi, I have encountered a worrying problem, during migration of software from numarray to numpy, perhaps someone could help me determine how this could be addressed. I have a large array or values 1 long 12 items per line. The matrix contains floats, dtype=float32 in numpy and type=Float32 in

Re: [Numpy-discussion] "import numpy" is slow

2008-07-31 Thread Hanni Ali
Hi All, I've been reading this discussion with interest. I would just to highlight an alternate use of numpy to interactive use. We have a cluster of machines which process tasks on an individual basis where a master tasks may spawn 600 slave tasks to be processed. These tasks are spread across t

Re: [Numpy-discussion] "import numpy" is slow

2008-07-01 Thread Hanni Ali
ts by importing > numpy, so it will be even slower. > > Matthieu > > 2008/7/1 Hanni Ali <[EMAIL PROTECTED]>: > > Would it not be possible to import just the necessary module of numpy to > > meet the necessary functionality of your application. > > > > i.e

Re: [Numpy-discussion] "import numpy" is slow

2008-07-01 Thread Hanni Ali
Would it not be possible to import just the necessary module of numpy to meet the necessary functionality of your application. i.e. import numpy.core or whatever you're using you could even do: import numpy.core as numpy I think, to simplify your code, I'm no expert though. Hanni 2008/7/1

Re: [Numpy-discussion] Installation info

2008-06-09 Thread Hanni Ali
not produce the error (at least that's what I would have thought) i.e. if it isn't recognised the compiler should simply be using the alternate definition of the frexpf function defined, although I suspect it is a little less efficient than the float one from the libs. Hanni 2008/6/3 Ro

Re: [Numpy-discussion] Installation info

2008-06-09 Thread Hanni Ali
I have used the trail of Visual Studio 2008 (on full Server 2003) it copmiles and runs well if you comment out the lines meantioned earlier on in this thread. I am planning to spend some time with the intel fortran compiler to try to compile blas/lapack in the next few weeks. It is part of my curr

Re: [Numpy-discussion] Installation info

2008-06-03 Thread Hanni Ali
is piece of code numpy compiles and appears to function. Hanni 2008/6/2 Hanni Ali <[EMAIL PROTECTED]>: > Excellenm, thanks for clearing all that up. > > How about numpy with 2.6, any issues? > > Hanni > > 2008/6/2 David Cournapeau <[EMAIL PROTECTED]>: > &g

Re: [python-win32] building pywin32 on Server 2003 x64

2008-06-02 Thread Hanni Ali
Hi Mark Pedantic side-note: best I can tell, all the compilers are x86 binaries, so > even on a 64bit OS, we are still cross-compiling :) You are of course correct, I should have said I am developing on a 64 bit machine. > Grab the source .zip for build 211 now it is fresh, but otherwise, a w

Re: [Numpy-discussion] Installation info

2008-06-02 Thread Hanni Ali
Excellenm, thanks for clearing all that up. How about numpy with 2.6, any issues? Hanni 2008/6/2 David Cournapeau <[EMAIL PROTECTED]>: > Hanni Ali wrote: > > > > Yes I had used the internal versions in the mean time, but I do want > > to try to use the intel fortran

Re: [Numpy-discussion] Installation info

2008-06-02 Thread Hanni Ali
Hi David, > I can't build official binaries with VS: I don't have VS. Also, there is > the problem of building the fortran dependencies (BLAS/LAPACK). I don't > know if it is even possible to build ATLAS on windows x64. Even assuming > we only use netlib BLAS/LAPACK, I still need a fortran comp

Re: [Numpy-discussion] Installation info

2008-06-02 Thread Hanni Ali
Hi David, > Unfortunately, this is difficult: windows 64 is not commonly available > (I don't have any access to it personally, for example), and mingw is > not available yet for windows 64 either. I had managed to compile and install 1.04 with vs 2005 64 bit with a bit of hacking, however it h

Re: [python-win32] building pywin32 on Server 2003 x64

2008-05-31 Thread Hanni Ali
the > filename. To fix that, the final command should also include > "--target-version=2.6" > > > > Cheers, > > > > Mark > > > > *From:* Marc-André Belzile [mailto:[EMAIL PROTECTED] > *Sent:* Saturday, 31 May 2008 1:03 PM > *To:

[python-win32] building pywin32 on Server 2003 x64

2008-05-30 Thread Hanni Ali
Hi All, I am attempting to build pywin32 for a 64 bit deployment. It is necessary for us to use 64 bit python due to objects within our application exceeding 2GB in size. I am attempting to do so using msvc 2005 which I know is not ideal, but I have managed to build the other dependencies (Pytho

Re: [Numpy-discussion] Installation info

2008-05-30 Thread Hanni Ali
I would also like to see a 64bit build for windows as well if possible. Hanni 2008/5/30 Peter Creasey <[EMAIL PROTECTED]>: > 2008/5/30 Peter Creasey <[EMAIL PROTECTED]>: > > Is numpy v1.1 going to come out in egg format? > > > > Oops, I didn't mean to mail with an entire numpy digest in the body

Re: [gentoo-cluster] RE: Digest of gentoo-cluster@lists.gentoo.org issue 64 (429-433)

2008-01-15 Thread Hanni Ali
Read the instructions for unsubscribing, that is not how it;s done with Gentoo mailing lists: http://www.gentoo.org/main/en/lists.xml On 15/01/2008, Wilson, Jed <[EMAIL PROTECTED]> wrote: > > unsubscribe > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent

Re: [gentoo-cluster] cluster or distributed queue, general question

2008-01-11 Thread Hanni Ali
You mentioned DrQueue, that batch processing app fulfills many of your requirements. I wrote an ebuild for it too which is on bugs.gentoo Hanni On 11/01/2008, Jos Houtman <[EMAIL PROTECTED]> wrote: > > Thanx for the replies, > > I will certainly try the beowulf mailinglist next week, > The sugges

Re: [gentoo-cluster] Remote administration of a server

2007-05-14 Thread Hanni Ali
I know what you mean, there is lot of hype around it and not much substance. Assuming my motherboard supports IPMI, do you know if I will be able to do something like KVM-over-IP (or over ethernet) with this? It's not so much that it will allow you to KVM-over-IP but it should allow you to do

Re: [gentoo-cluster] Remote administration of a server

2007-05-14 Thread Hanni Ali
Hi Daniel, Using network boot for all you machines will simplify your job and reduce the issues of Kernel Panic problems when you update a kernel, allowing you to test an image on a local machine or VM without risking your live systems. Something else to look at is IPMI which allows hardware fun

Re: [gentoo-embedded] gentoo-embedded buildroot utility

2007-03-14 Thread Hanni Ali
Sounds fascinating and potentially a very useful tool. I would be keen to integrate distcc support into it to allow faster builds, I would be happy to work on that aspect of the script if you like. Hanni -- E-mail: [EMAIL PROTECTED] Mobile: 07985580147 My Blog: http://ainkaboot.co.uk/blogs/hann

Re: [gentoo-cluster] SCIRE Project

2007-02-14 Thread Hanni Ali
I know in March I'm going to be deploying this across all the servers I manage. A few parties have contacted me offlist and all of what you reference is right along what myself and others are probably trying to do. If enough people are interested maybe we can create a unified howto for large-sca

Re: [gentoo-cluster] GlusterFS

2007-01-31 Thread Hanni Ali
If you test it on Gentoo post the ebuild here and on bugs.gentoo.org, this will encourage others to test it and hopefully we can then pool the results to get some sort of idea how powerful this really is. Hanni On 31/01/07, Daniel van Ham Colchete <[EMAIL PROTECTED]> wrote: On 1/31/07, Brian D.

Re: [gentoo-cluster] SAN Clustered Filesystem

2007-01-26 Thread Hanni Ali
I've looked at implementing a mysql-cluster in great detail and let it go because it's mostly meant for a setup with a fixed database-size. If you experience (large) growth in your database volume clustering is not very suitable (we're in that situation) I'd agree, database clustering has to be

Re: [gentoo-cluster] gentoo 2006.1 + openmosix-sources-2.6.12.r577 + openmosix-user?

2006-12-21 Thread Hanni Ali
ok so follow the hpc how to: http://www.gentoo.org/doc/en/hpc-howto.xml but modify for diskless which you seem to have got the hang of. distcc: http://www.gentoo.org/doc/en/distcc.xml for compiling for the competitive evolution experiments, have you written them, are they parallelized, if not a

Re: [gentoo-cluster] gentoo 2006.1 + openmosix-sources-2.6.12.r577 + openmosix-user?

2006-12-20 Thread Hanni Ali
I recommend a 'generic cluster' with a good queueing program like DrQueue to achieve similar results to OpenMosix. Hanni -- E-mail: [EMAIL PROTECTED] Mobile: 07985580147 Website: http://ainkaboot.co.uk";>http://ainkaboot.co.uk -- gentoo-cluster@gentoo.org mailing list

Re: [gentoo-cluster] Herd split? hac-cluster and hpc-cluster

2006-12-13 Thread Hanni Ali
I think it's a fairly good idea, -- E-mail: [EMAIL PROTECTED] Mobile: 07985580147 Website: http://ainkaboot.co.uk";>http://ainkaboot.co.uk -- gentoo-cluster@gentoo.org mailing list

Re: [gentoo-cluster] examples of (large) Gentoo clusters

2006-12-04 Thread Hanni Ali
Ainkaboot and our customers would probably be interested in Lustre and paid support. Hanni On 04/12/06, Donnie Berkholz <[EMAIL PROTECTED]> wrote: Bryan Green wrote: > Donnie Berkholz writes: >> I guess that means we should get in touch with them to get on the >> supported systems list. =) > >

Re: [gentoo-cluster] examples of (large) Gentoo clusters

2006-12-02 Thread Hanni Ali
Hi Bryan, I run a start up which provides Gentoo based clusters for a wide variety of applications. I find it far simpler to maintain and run Gentoo, portage simplifies maintenance so much. The cluster will be a "hyperwall", meaning that each node > will have graphics, forming a grid of display

Re: [gentoo-embedded] unable to chroot

2006-11-17 Thread Hanni Ali
A few people have been having problems with this recently could I ask what version of crossdev you are using I just checked a new build and I've hit the same problem On 17/11/06, Mike Frysinger <[EMAIL PROTECTED]> wrote: On Friday 17 November 2006 16:35, Corey wrote: > scanner gentoo # ./bin/b

Re: [gentoo-embedded] building gentoo

2006-11-16 Thread Hanni Ali
Gentoo wiki has more info Embedded Gentoo - Gentoo Linux Wiki And if you require cross-compiling then have a look at: http://www.gentoo.org/proj/en/base/embedded/cross-development.xml On 16/11/06, rami jiossy <[EMAIL PROTECTED]> wrote: Hi; is this th

Re: [gentoo-embedded] reduced X11 - how to?

2006-11-04 Thread Hanni Ali
obviously select only the modular parts you actually need don't just emerge xorg-x11 (this pulls down loads of unnecessary stuff)determine the exact dependencies necessaryin addition to kdrive (which I'm not hugely familiar with but search "xorg kdrive" on google and i found some useful mailing lis

Re: [gentoo-cluster] openib

2006-09-09 Thread Hanni Ali
I feel it would be sensible to have a gentoo cluster overlay for all clustering and grid related software, would be useful for testing and collaboration.http://overlays.gentoo.org/ HanniOn 09/09/06, Bryan Green <[EMAIL PROTECTED]> wrote: I have a rudimentary portage overlay for the openib userspace

Re: [gentoo-embedded] Invalid configuration `i686-gentoo-linux-uclibc'

2006-09-03 Thread Hanni Ali
Just a suggestion but I use i586 for the C7 and C3-march=i686 -mfpmath=sse -msse -Os -pipe -fomit-frame-pointer -mmmxthis is unnecessary you just need -march=i686 -Os (if smll is what your after)for sse mmx etc there are use flags you should use it is foolish to force them to enable stick mmx sse a

Re: [gentoo-embedded] Invalid configuration `i686-gentoo-linux-uclibc'

2006-09-03 Thread Hanni Ali
sorry and -pipeOn 03/09/06, Hanni Ali <[EMAIL PROTECTED]> wrote: Just a suggestion but I use i586 for the C7 and C3-march=i686 -mfpmath=sse -msse -Os -pipe -fomit-frame-pointer -mmmxthis is unnecessary you just need -march=i686 -Os (if smll is what your after) for sse mmx etc there are use

[gentoo-cluster] Clustering Overlay

2006-08-29 Thread Hanni Ali
Is there a Gentoo Overlay to put related cluster ebiulds into before they make it into the main tree?Hanni-- E-mail: [EMAIL PROTECTED]Mobile: 07985580147 Website: www.ainkaboot.co.uk

Re: [gentoo-cluster] Docs

2006-06-18 Thread Hanni Ali
I don't mind doing that, been meaning to go over heartbeat etc. anyhow.HanniOn 16/06/06, Donnie Berkholz < [EMAIL PROTECTED]> wrote:Donnie Berkholz wrote:> We used to have some documentation floating around, but it never got put > on the Gentoo site and converted to GuideXML. I think there was a> f

Re: [gentoo-cluster] High-Availability Howto for Gentoo

2006-04-11 Thread Hanni Ali
1. with distcc how many files were being compiled at once?2. defo include PostgreSQLHanniOn 11/04/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:[ Snip ] >>  III. HA Clustering ->i) web/email>ii) failover/etc>iii) mySQL clustersIf we have mySQL I'd like to see PostgreSQL too, I've got

Re: [gentoo-cluster] High-Availability Howto for Gentoo

2006-04-11 Thread Hanni Ali
   ii) Distributed Compiling? distcc    iii) Distributed rendering pvmpovray  V. Intro to MPI - Merge the other MPI howto and add some?    We need to cover all the different methods and possibly a comparison. Opinions? Hanni On 11/04/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hanni

Re: [gentoo-cluster] High-Availability Howto for Gentoo

2006-04-11 Thread Hanni Ali
Ok this is all good stuff.This is the specific article I thought as a list we could turn into a coherent doccument. http://gentoo-wiki.com/HOWTO_Configure_Gentoo_Linux_for_Clustering There is also the beginings of an MPI programming guide which although I'm not so sure it's gentoo specific in any w

Re: [gentoo-cluster] High-Availability Howto for Gentoo

2006-04-07 Thread Hanni Ali
Ok,I suggest we try to put the documentation together on gentoo-wiki.com I've always found this site an excellent resource.There are already two stubs which I feel we should build on and kyron has compiled an excellent list of programs if you follow the links. http://gentoo-wiki.com/Index:HOWTO#Bui

Re: [gentoo-cluster] High-Availability Howto for Gentoo

2006-04-07 Thread Hanni Ali
Hey,Not currently, but it's something I'm working on. Anything people have out there would be welcomed.I have a high performance and distcc cluster and am working on the failover. Also I'm looking into a Gentoo clustering LiveCD, suggestions for programs etc. or help would be welcomed. HanniOn 07/0

Re: [gentoo-embedded] init Id "s0" respawning too fast: disabled for 5 minutes

2006-04-05 Thread Hanni Ali
I had something like this happen whe I was using mingetty to autologin and it wasn't installed. Possibly modules problem but fist check you have agetty installed/configured correctly.Hanni On 05/04/06, Hans-Werner Hilse <[EMAIL PROTECTED]> wrote: Hi,On Wed, 5 Apr 2006 14:13:32 +0200 "Jean Blignaut"

Re: [gentoo-embedded] x86 SBC Gentoo Embedded HotTo version 0.09

2005-10-24 Thread Hanni Ali
yep i586 for p3 not i686 read the help and man page and example to find the best combo On 22/10/05, Mike Frysinger <[EMAIL PROTECTED]> wrote: > On Friday 21 October 2005 10:20 am, S. ancelot wrote: > > CHOST="i686-pc-linux-gnu" > > your CHOST is wrong and will probably break things > -mike > -- >

Re: [gentoo-embedded] how to boot real fast?

2005-10-13 Thread Hanni Ali
http://gentoo-wiki.com/HOWTO_build_a_LiveCD_from_scratch#Optimizing_the_booting_process this link has a few tips on speeding up boot time it shaves a few seconds Hanni On 13/10/05, Natanael Copa <[EMAIL PROTECTED]> wrote: > On ons, 2005-10-12 at 19:08 -0300, Francisco J. A. Ares wrote: > > Hi, A

Re: [gentoo-embedded] flash card booting

2005-09-30 Thread Hanni Ali
I don't really know about the current flash card u are using but i suggest if you want to keep everything solid state look into ide and usb interface cards such as these find a local distributor http://www.m-sys.com/site/en-US/Products/DiskOnChip/DiskOnChip using the usb interface is the quickest

[gentoo-embedded] Via Mini-ITX

2005-08-27 Thread Hanni Ali
Has anyone had any experience of the new dual processor board from via http://www.viaembedded.com/product/epia_dp_spec.jsp?motherboardId=321 I'd be intersted to know how it performs in comparison with the other boards. As well has anyone on this list used Power Over Ethernet to power an embeded