silverlight for .NET / CLR based numerical computing on osx
Posted
by Jonathan Shore
on Stack Overflow
See other posts from Stack Overflow
or by Jonathan Shore
Published on 2010-04-03T00:30:05Z
Indexed on
2010/04/03
0:33 UTC
Read the original article
Hit count: 398
I'm interested in using F# for numerical work, but my platforms are not windows based. Mono still has a significant performance penalty for programs that generate a significant amount of short-lived objects (as would be typical for functional languages).
Silverlight is available on OSX. I had seen some reference indicating that assemblies compiled in the usual way could not be referenced, but not clear on the details. I'm not interested in UIs, but wondering whether could use the VM bundled with silverlight effectively for execution?
I would want to be able to reference a large library of numerical models I already have in java (cross-compiled via IKVM to .NET assemblies) and a new codebase written in F#. My hope would be that the silverlight VM on OSX has good performance and can reference external assemblies and native libraries.
Is this doable?
© Stack Overflow or respective owner