/Haskell-High-Performance-Programming

Haskell high Performance Programming, published by Packt

Primary LanguageHaskellMIT LicenseMIT

Haskell High Performance Programming

This is the code repository for Haskell High Performance Programming By Packt. It contains all the supporting project files necessary to work through the book from start to finish.

##Instructions and Navigation All of the code is organized into folders. Each folder starts with number followed by the application name. For example, Chapter02.

You will see code something similar to the following:

class Some a where
    next :: a -> a -> a

instance Some Double where
    next a b = (a + b) / 2

goGeneral :: Some a => Int -> a -> a
goGeneral 0 x = x
goGeneral n x = goGeneral (n-1) (next x x)

Software and Hardware List

Chapter Software required OS required
1 to 14 GHC >= 7.6 Windows
4 Haskell Stack tool Windows
11 CUDA-enabled system Windows

##Related Haskell Products:

Suggestions and Feedback

[Click here] (https://docs.google.com/forms/d/e/1FAIpQLSe5qwunkGf6PUvzPirPDtuy1Du5Rlzew23UBp2S-P3wB-GcwQ/viewform) if you have any feedback or suggestions.