-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathREADME.txt
More file actions
37 lines (24 loc) · 1.25 KB
/
Copy pathREADME.txt
File metadata and controls
37 lines (24 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Aeminium Runtime
This project is part of the Æminium Language (http://aeminium.dei.uc.pt/).
This is a Java library that executes Directed Acyclic Graphs (DAG) of tasks.
The original code is written inside Tasks that are scheduled to the runtime
and executed asynchronously.
Æminium Programmers are not expected to write programs using this API. Instead,
they write programs in the Æminium Language and the compiler generates the Java
code that uses this API. Nevertheless, the API is available for more low-level
tuning.
How to use:
This project uses ANT, so it only requires `ant jar` on the command-line to
generate a jar containing the runtime.
Source Code organization:
aeminium.runtime => Public API
aeminium.runtime.examples => Some examples of how to use the API. Bigger
programs are available in the AeminiumBenchmarks project.
aeminium.runtime.implementations => Contains an implementation of the runtime,
containing a workstealing approach.
aeminium.runtime.tests => Unit tests.
Config File:
Inside each AeminiumRuntime project, you may place a aeminiumrt.config file
containing the configuration for your project. This may contain default values
for debugging (including graphviz output), performance settings as well as
parallelization thresholds.