mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
40 lines
3.5 KiB
XML
40 lines
3.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
|
<pkgmetadata>
|
|
<longdescription lang="en">
|
|
Nanos++ is a parallel runtime library aimed at fast prototyping developed by the Programming Models group at the Barcelona Supercomputing Center.
|
|
Nanos++ is mainly used together with the Mercurium compiler to implement the OmpSs programming model (an extension to the OpenMP programming model based only in tasks). Both tools also implement OpenMP 3.1 features and include some additional extensions (some of them also introduced in following OpenMP releases).
|
|
The runtime provides several services to support task parallelism using a synchronization mechanism based on data-dependencies. Data parallelism is also supported by means of services mapped on top of its task support. Task are implemented as user-level threads when possible (currently x86, x86-64, ia64, arm, aarch64, ppc32 and ppc64 are supported). It also provides support for maintaining coherence across different address spaces (such as with GPUs or cluster nodes) by means of a directory/cache mechanism.
|
|
The main purpose of Nanos++ RTL is to be used in research of parallel programming environments. Our aim has been to enable easy development of different parts of the runtime so researchers have a platform that allows them to try different mechanisms. As such it is designed to be extensible by means of plugins. The scheduling policy, the throttling policy, the dependence approach, the barrier implementations, slicers and worksharing mechanisms, the instrumentation layer and the architectural dependant level are examples of plugins that developers may easily implement using Nanos++. This extensibility does not come for free. The runtime overheads are slightly increased, but there should be low enough for results to be meaningful except for cases of extreme-fine grain applications.
|
|
</longdescription>
|
|
<maintainer type="person">
|
|
<email>lssndrbarbieri@gmail.com</email>
|
|
<name>Alessandro Barbieri</name>
|
|
</maintainer>
|
|
<upstream>
|
|
<bugs-to>https://github.com/bsc-pm/nanox/issues</bugs-to>
|
|
<remote-id type="github">bsc-pm/nanox</remote-id>
|
|
</upstream>
|
|
<use>
|
|
<flag name="allocator">Enables Allocator module</flag>
|
|
<flag name="ayudame">Enables ayudame support from <pkg>sys-cluster/temanejo</pkg></flag>
|
|
<!--<flag name="cuda">enable CUDA</flag>-->
|
|
<flag name="dlb">build with <pkg>sys-cluster/dlb</pkg> library support</flag>
|
|
<flag name="extrae">build with <pkg>sys-cluster/extrae</pkg> support</flag>
|
|
<flag name="gasnet">Enable <pkg>sys-cluster/gasnet</pkg> support</flag>
|
|
<flag name="hwloc">Enable <pkg>sys-apps/hwloc</pkg> support</flag>
|
|
<flag name="memkind">Enables <pkg>dev-libs/memkind</pkg> support</flag>
|
|
<flag name="memtracker">Enables Memtracker module</flag>
|
|
<flag name="nanox-debug">Enable generation of debug version</flag>
|
|
<flag name="nanox-instrumentation">Enable generation of instrumentation version</flag>
|
|
<flag name="nanox-instrumentation-debug">Enable generation of instrumentation-debug version</flag>
|
|
<flag name="nanox-performance">Enable generation of performance version</flag>
|
|
<flag name="opencl">Enables openCL support</flag>
|
|
<flag name="papi">enable <pkg>dev-libs/papi</pkg> support</flag>
|
|
<flag name="resiliency">Enables task-level resiliency</flag>
|
|
<flag name="task-callback">Enables task callback feature</flag>
|
|
<flag name="sqlite">enable <pkg>dev-db/sqlite</pkg> support</flag>
|
|
<flag name="threads">Enable user level threads</flag>
|
|
</use>
|
|
</pkgmetadata>
|