https://github.com/pikatchu/LinearML
Functional language for parallel programming
https://github.com/pikatchu/LinearML
Last synced: 6 months ago
JSON representation
Functional language for parallel programming
- Host: GitHub
- URL: https://github.com/pikatchu/LinearML
- Owner: pikatchu
- License: other
- Created: 2010-06-20T22:51:27.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T11:48:11.000Z (over 8 years ago)
- Last Synced: 2024-11-14T02:04:41.940Z (about 1 year ago)
- Language: OCaml
- Homepage:
- Size: 1.27 MB
- Stars: 432
- Watchers: 26
- Forks: 37
- Open Issues: 4
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-programming-languages - LinearML - Functional language for parallel programming (Uncategorized / Uncategorized)
- awesome-list - LinearML
- programming-languages - LinearML - Functional language for parallel programming. (Functional)
README
I am providing code in this repository to you under an open source license.
Because this is my personal repository, the license you receive to my code if from
me and not my employer (Facebook).
LinearML (or LiML) is a programming language designed to write efficient parallel programs.
Its main characteristics are:
* Purely functional
* Statically typed
* Strict evaluation order
In LiML, the default is, every value has a linear type, this implies:
* Thread-safe copy-less message-passing between threads
* Thread-safe IOs
* In-place updates for the vast majority of operations (better cache hits)
* Statically enforced memory management.
In other words, there is no garbage collector, the memory usage is safe, it's garanteed statically !
To compile LiML, follow the instructions in INSTALL