Managed language for scientific computing software

Posted by heisen on Stack Overflow See other posts from Stack Overflow or by heisen
Published on 2008-09-24T05:09:45Z Indexed on 2010/05/11 1:24 UTC
Read the original article Hit count: 430

Filed under:
|
|

Scientific computing is algorithm intensive and can also be data intensive. It often needs to use a lot of memory to run analysis and release it before continuing with the next. Sometime it also uses memory pool to recycle memory for each analysis. Managed language is interesting here because it can allow the developer to concentrate on the application logic. Since it might need to deal with huge dataset, performance is important too. But how can we control memory and performance with managed language?

© Stack Overflow or respective owner

Related posts about c#

Related posts about java