Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Rafael Teixeira
Small typing error on the Release Notes Users of mkbundle can now pass runtime options to the generated executable by setting the codetMONO_BUNDLED_OPTIONS/code environment variable. Where is codet it should be code, I think. Rafael Monoman Teixeira --- To

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Jonathan Pobst
Fixed. Thanks! Jon Rafael Teixeira wrote: Small typing error on the Release Notes Users of mkbundle can now pass runtime options to the generated executable by setting the codetMONO_BUNDLED_OPTIONS/code environment variable. Where is codet it should be code, I think. Rafael Monoman

[Mono-dev] sse_mathfun convert

2009-10-01 Thread jetthink
Hi, I have converted exp_ps(from http://gruntthepeon.free.fr/ssemath/) to Mono. using System; using Mono.Simd; public static class Myext{ public static unsafe Vector4i LogicalLeftShift(this Vector4i v1, int amount) { Vector4i res = new Vector4i(); int* a = (int*)v1;

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Daniel Morgan
Is the Mono for Windows installer bigger now because it includes the mono.dll and mono static libraries like libmono.a which non-embedders do not need? I think maybe there should be two installers for mono on windows. 1. Normal. (Mono/Gtk+/Gtk# Runtime and Compilers and Tools). 2. Embedded.

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Robert Jordan
Daniel Morgan wrote: Is the Mono for Windows installer bigger now because it includes the mono.dll and mono static libraries like libmono.a which non-embedders do not need? Mono.dll is required by the Windows build, so it cannot be omitted. Libmono.a is of no use under Windows and it should

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread LKeene
Has the Task Parallel Library been performance tested on OSX? I've been having a tough time getting any kind of performance out of my threads on the Mac+Mono platform. Maybe this is the solution? -L Andrew Jorgensen-4 wrote: The first preview build of 2.6 has been published to

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread J�r�mie Laval
I never heard of it tested under OSX. --Jérémie Laval jeremie.la...@gmail.com http://neteril.org On Thu, Oct 1, 2009 at 7:56 PM, LKeene lt;lionel.ke...@gmail.comgt; wrote: Has the Task Parallel Library been performance tested on OSX? I've been having a tough time getting any kind of

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread Alan McGovern
Hey, On Thu, Oct 1, 2009 at 6:56 PM, LKeene lionel.ke...@gmail.com wrote: Has the Task Parallel Library been performance tested on OSX? I've been having a tough time getting any kind of performance out of my threads on the Mac+Mono platform. Maybe this is the solution? Unlikely. I mean

Re: [Mono-dev] 2.6 preview 1

2009-10-01 Thread LKeene
Hey Alan, I understand. I've been through the algorithm and it's very sound. It screams on Microsoft .net, runs nicely (but a little slower) on Mono runtime and Linux. Bogs down like crazy on Mono + Mac. I have a sneaky suspicion it's the way the calling thread is waiting for the worker threads

[Mono-dev] mono / mac / gtk / winforms

2009-10-01 Thread Kris Ray
Are the GTK / winforms updates included in mono 2.6 preview 1 for Mac? I ask because we still have significant erratic behavior with gui apps on Mac with 2.6, but not on linux or windows. thanks, Kris ___ Mono-devel-list mailing list

[Mono-dev] Mono.Simd and Threefish256

2009-10-01 Thread Marcus Griep
As part of my free time, I decided to start down the path to SIMD-ing some cryptography algorithms. As a starter exercise, I took Threefish256 from the SHA-3 submission Skein. The experience was very enlightening, and as I haven't been able to find anything of substance out there about working