Skip to content

PacktPublishing/Haskell-High-Performance-Programming

Repository files navigation

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 if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781786464217

About

Haskell high Performance Programming, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 5