Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pveber/plumbery
A library to distribute function evaluations on a PBS cluster
https://github.com/pveber/plumbery
Last synced: 10 days ago
JSON representation
A library to distribute function evaluations on a PBS cluster
- Host: GitHub
- URL: https://github.com/pveber/plumbery
- Owner: pveber
- License: gpl-3.0
- Created: 2012-06-05T12:21:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-21T18:09:06.000Z (over 12 years ago)
- Last Synced: 2023-03-11T13:50:03.276Z (over 1 year ago)
- Language: OCaml
- Size: 148 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Plumbery
========This library can be used to evaluate a function application on a
cluster of machines running a Portable Batch Submission (PBS) system,
like Torque. This functionality is offered by an `eval` function of
type:```
val eval : ('a -> 'b) -> 'a -> 'b Lwt.t
```In brief, the closure and its argument are marshalled to another
process which is invoked through a `qsub` command. The result is
provided through a lwt thread.Beware, this code is very naive and preliminary, but it's already
something.Contributions and comments are of course welcomed.