... Io has a very high performance(100s of MFLOPS to multiple GFLOPS) Vector object: http://www.iolanguage.com/about/speed/vector/ppc/ There are various ways...
... I'm on an x86 architecture (Athlon, which has poorer FPU performance than Intel CPUs), which unfortunately doesn't nearly come close to the levels of...
... Can you please back up both statements here, especially the first (amd vs intel)? - John...
John Nowak
john@...
Aug 4, 2005 3:00 am
6723
... The PPC vector performance difference was mostly due to the fact that the OSX version of the vector add-on is altivec accelerated, while the x86 version...
... Just to set the record straight here, SSE and Altivec are just different implementations of the same thing. That said, I realize that in Io, vector...
Jeremy Tregunna
jtregunna@...
Aug 4, 2005 4:34 am
6725
... One of which (according to Steve) is twice as fast as the other. I'm sure that we've all heard similar things before and I, for one, have no reason to...
... Well believe what you will, but Altivec is by no means faster than SIMD on x86. His processor may perform better than the machine used in the x86 test. I...
Jeremy Tregunna
jtregunna@...
Aug 4, 2005 5:42 am
6727
... Unless, of course, one reads the statistics, or looks at the technical documentation. ... I what way do they "use the same stuff"? Do you mean that AMD and...
... It is my understanding that the current x86 Io doesn't use the vector unit at all. So the current fp performance on x86 isn't too shabby. :) Jonathan....
... Sounds good to me! I've added your patch and am including this Debugger.io file in _tests and will possibly move it into _ioCode once I get a chance to...
Here's the Io version: http://www.mike-austin.com/io/ray.io And here's the C++ original: http://www.ffconsultancy.com/free/ray_tracer/comparison.html It...
... or something ... it's not correct. ... width configurable ... 'Collector collect' but ... Mike, you left out a 'unitise' call in the inner loop -- try for(...
... I just saw this this morning. I have to agree. The tutorials that were (very) indirectly linked to also helped me decide I wanted to learn Ocaml in...
... You're right, thanks for spotting that! The image is now correct, except it's 'grainy' instead of being smooth spheres. Something is just a notch off,...
Well, unfortunately, I am unable to build the latest and greatest IoDesktop for Linux from sources. And, I'm not sure why, except to say that I must be...
... With the 2005-07-25 version I have no problems on a gentoo box. If that can help you : lexa@dekarion ~ $ ldd /usr/local/bin/ioDesktop linux-gate.so.1 =>...
Lexa
lexa@...
Aug 8, 2005 2:01 am
6740
... I tried both the Darcs version and the .tar.gz version, and neither would build, and I'm not sure why not. I'm not sure that your ldd will help me,...
... linux-gate.so.1 is a magical virtual library provided by the 2.6 Linux kernel, so you don't need to find it. The rest are provided by the following...
We were talking about some crazy stuff I did, what, years ago, with Io on #io today. I had some code that allowed you to call arbitary win32 apis from Io....
Ok, this is better. I'm now using IoVM with none of the IoDesktop extensions, so there's a new trivial patch. I've also implemented callbacks (with lots of...
Hi, I'm an experienced Ruby, err, I mean Io developer and I thought it would be fun to port transparent futures over to Python. Okay, I'm lying... I've never...
... Sorry for the delay - this message got lost in my in-box. Yes, it's a bug in the parser. I'll be fixing the parser sometime before the end of the year. --...
... Hi David, Neat. This reminds me of when I first started playing with Python (back in 1998) and tried to implement prototypes in it. It kinda-sorta worked,...
Hi, Question 1) Somebody can explain me the use of super? I tried the following code a := Object clone do ( f := method( write("a\n") ) g := method(x, write("a...