Difference between revisions of "Performance/Yhc"

From HaskellWiki
Jump to navigation Jump to search
m (spam)
(http://flheddin.qsh.eu/reccan-812.html)
Line 1: Line 1:
  +
[nightmare video board games|http://flheddin.qsh.eu/reccan-812.html] [[http://flheddin.qsh.eu/reccan-812.html nightmare video board games]] [http://flheddin.qsh.eu/reccan-812.html|nightmare video board games] ((http://flheddin.qsh.eu/reccan-812.html nightmare video board games)) [[http://flheddin.qsh.eu/reccan-812.html | nightmare video board games]] "nightmare video board games":http://flheddin.qsh.eu/reccan-812.html [macbeth movies|http://naceceli.qsh.eu/page1816.html] [[http://naceceli.qsh.eu/page1816.html macbeth movies]] [http://naceceli.qsh.eu/page1816.html|macbeth movies] ((http://naceceli.qsh.eu/page1816.html macbeth movies)) [[http://naceceli.qsh.eu/page1816.html | macbeth movies]] "macbeth movies":http://naceceli.qsh.eu/page1816.html [smartphone software crack|http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html] [[http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html smartphone software crack]] [http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html|smartphone software crack] ((http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html smartphone software crack)) [[http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html | smartphone software crack]] "smartphone software crack":http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html [llc business license|http://faquafav.is-the-boss.com/text-219.htm] [[http://faquafav.is-the-boss.com/text-219.htm llc business license]] [http://faquafav.is-the-boss.com/text-219.htm|llc business license] ((http://faquafav.is-the-boss.com/text-219.htm llc business license)) [[http://faquafav.is-the-boss.com/text-219.htm | llc business license]] "llc business license":http://faquafav.is-the-boss.com/text-219.htm [o zone numa numa music video|http://licawol.strefa.pl/resource756.htm] [[http://licawol.strefa.pl/resource756.htm o zone numa numa music video]] [http://licawol.strefa.pl/resource756.htm|o zone numa numa music video] ((http://licawol.strefa.pl/resource756.htm o zone numa numa music video)) [[http://licawol.strefa.pl/resource756.htm | o zone numa numa music video]] "o zone numa numa music video":http://licawol.strefa.pl/resource756.htm
 
{{Performance infobox}}
 
{{Performance infobox}}
 
[[Category:Performance|Yhc]]
 
[[Category:Performance|Yhc]]

Revision as of 11:38, 10 January 2009

[nightmare video board games|http://flheddin.qsh.eu/reccan-812.html] [nightmare video board games] video board games ((http://flheddin.qsh.eu/reccan-812.html nightmare video board games)) [| nightmare video board games] "nightmare video board games":http://flheddin.qsh.eu/reccan-812.html [macbeth movies|http://naceceli.qsh.eu/page1816.html] [macbeth movies] movies ((http://naceceli.qsh.eu/page1816.html macbeth movies)) [| macbeth movies] "macbeth movies":http://naceceli.qsh.eu/page1816.html [smartphone software crack|http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html] [smartphone software crack] software crack ((http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html smartphone software crack)) [| smartphone software crack] "smartphone software crack":http://hencnac4t.is-the-boss.com/news-smartphone-software-2008-12-24.html [llc business license|http://faquafav.is-the-boss.com/text-219.htm] [llc business license] business license ((http://faquafav.is-the-boss.com/text-219.htm llc business license)) [| llc business license] "llc business license":http://faquafav.is-the-boss.com/text-219.htm [o zone numa numa music video|http://licawol.strefa.pl/resource756.htm] [o zone numa numa music video] zone numa numa music video ((http://licawol.strefa.pl/resource756.htm o zone numa numa music video)) [| o zone numa numa music video] "o zone numa numa music video":http://licawol.strefa.pl/resource756.htm

Haskell Performance Resource

Constructs:
Data Types - Functions
Overloading - FFI - Arrays
Strings - Integers - I/O
Floating point - Concurrency
Modules - Monads

Techniques:
Strictness - Laziness
Avoiding space leaks
Accumulating parameter

Implementation-Specific:
GHC - nhc98 - Hugs
Yhc - JHC

Yhc is not optimised for speed, and as such does not infer strictness information, and does not honour any specialise pragmas. If your program is time critical, using GHC would probably be a better bet. In particular, Yhc does no inlining, so if you have a time critical inner loop and have to use Yhc, then inlining manually would probably be a good idea.

Yhc is optimised for small size useage, and should require less heap space than other compilers. There are no space optimisations that can be made that will help Yhc, beyond those which are useful for all Haskell compilers.