mirror of
https://github.com/HuwCampbell/grenade.git
synced 2024-11-22 06:55:13 +03:00
Merge pull request #4 from erikd/master
Add .gitignore and add minimal build documentation
This commit is contained in:
commit
2bd9f46aa1
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
.cabal-sandbox/
|
||||
cabal.sandbox.config
|
||||
dist/
|
||||
|
20
README.md
20
README.md
@ -37,6 +37,26 @@ Layers in Grenade are represented as Haskell classes, so creating one's own is e
|
||||
of a network are not specified correctly and a layer can not sensibly perform the operation between two shapes, then
|
||||
it will result in a compile time error.
|
||||
|
||||
|
||||
Build Instructions
|
||||
------------------
|
||||
Grenade currently only builds with the [mafia][https://github.com/ambiata/mafia] scipt that is located in the
|
||||
repository. You will also need the `lapack` and `blas` libraries and development tools. Once you have all
|
||||
that, Grenade can be build using:
|
||||
|
||||
```
|
||||
./mafia build
|
||||
```
|
||||
|
||||
and the tests run using:
|
||||
|
||||
```
|
||||
./mafia test
|
||||
```
|
||||
|
||||
Grenade is currently known to build with ghc 7.10. We are working on making it build with ghc 8.0.
|
||||
|
||||
|
||||
Thanks
|
||||
------
|
||||
Writing a library like this has been on my mind for a while now, but a big shout out must go to Justin Le, whose
|
||||
|
Loading…
Reference in New Issue
Block a user