|
1 | 1 | {% set data = load_json_eessi_software() %} |
2 | 2 | {% set software = data.software %} |
3 | | -{% set extensions = data.extensions %} |
4 | 3 |
|
5 | 4 | # Software available in EESSI |
6 | 5 |
|
7 | | -<em>{{ data.n_software }} unique software projects are currently available in EESSI (+ {{ data.n_extensions }} unique extensions)</em> |
| 6 | +Overview of software available in [EESSI's production repository `software.eessi.io`](../repositories/software.eessi.io.md). |
8 | 7 |
|
| 8 | +<em>{{ data.n_software }} unique software projects (+ {{ data.n_extensions }} unique extensions)</em> |
| 9 | + |
| 10 | +!!! warning "Details on GPU installations not included yet" |
| 11 | + |
| 12 | + The overview currently doesn't expose information about GPU installations of software yet. |
| 13 | + |
| 14 | + This will be resolved soon. |
| 15 | + |
| 16 | +<!-- see also docs/available_software/javascripts/software-filter.js --> |
9 | 17 | <input type="search" id="software-search" class="md-input" |
10 | 18 | placeholder="Filter software..." |
11 | 19 | style="width:100%; margin-bottom:1rem;"> |
|
14 | 22 |
|
15 | 23 | {% for pkg in software %} |
16 | 24 | {% set pkg_slug = pkg.name | replace(' ', '-') %} |
| 25 | +{% if pkg.is_extension -%} |
| 26 | +- <span class="software-item software-card" |
| 27 | + data-search="name:{{ pkg.name }} extension ext_type:{{ pkg.type }}" > |
| 28 | + <span class="software-name"><a href="https://eessi.io/docs/available_software/detail/{{ pkg_slug }}">{{ pkg.name }}</a></span> |
| 29 | + <span class="software-more-info"><small>(extension)</small></span> |
| 30 | + <br/> |
| 31 | + <p class="software-description"> |
| 32 | + {{ pkg.name }} is a {% if pkg.type == "python" -%} Python package{% elif pkg.type == "r" -%}R library{% elif pkg.type == "perl" -%}Perl module{% endif %} |
| 33 | + that is included as extension in the following software installations: |
| 34 | + <ul> |
| 35 | + {% for parent in pkg.all_parent_names %} |
| 36 | + {% set parent_slug = parent | replace(' ', '-') %} |
| 37 | + <li><a href="https://eessi.io/docs/available_software/detail/{{ parent_slug }}">{{ parent }}</a></li> |
| 38 | + {% endfor %} |
| 39 | + </p> |
| 40 | + </ul> |
| 41 | + </span> |
| 42 | +{% else -%} |
17 | 43 | - <span class="software-item software-card" |
18 | 44 | data-search="name:{{ pkg.name }} {{ pkg.homepage }} {{ pkg.description }} {{ pkg.cpu_families }} {{ pkg.eessi_versions }} "> |
19 | 45 |
|
|
30 | 56 | <br/> |
31 | 57 | <span class="software-cpus">Supported CPU families: {% if 'AMD' in pkg.cpu_families -%}<span class="software-cpu-amd">AMD</span>{% endif %}{% if 'Intel' in pkg.cpu_families -%}<span class="software-cpu-intel">Intel</span>{% endif %}{% if 'Arm' in pkg.cpu_families -%}<span class="software-cpu-arm">Arm</span>{% endif %}{% if 'RISC-V' in pkg.cpu_families -%}<span class="software-cpu-riscv">RISC-V</span>{% endif %}</span> |
32 | 58 | <br/> |
33 | | - <span class="software-gpus">Supported GPU families: <span class="software-gpu-amd">AMD</span> <span class="software-gpu-nvidia">NVIDIA</span></span> |
| 59 | + <span class="software-gpus">Supported GPU families: {% if pkg.gpu_families == '' -%}<em>(none)</em>{% else -%}{% if 'AMD' in pkg.gpu_families -%}<span class="software-gpu-amd">AMD</span>{% endif %}{% if 'NVIDIA' in pkg.gpu_families -%}<span class="software-gpu-nvidia">NVIDIA</span>{% endif %}{% endif %}</span> |
34 | 60 | <br/> |
35 | 61 | </span> |
36 | | -{% endfor %} |
37 | | - |
38 | | -{% for ext in extensions.values() %} |
39 | | -{% set ext_slug = ext.name | replace(' ', '-') %} |
40 | | -- <span class="software-item software-card" |
41 | | - data-search="name:{{ ext.name }} extension" > |
42 | | - <span class="software-name"><a href="https://eessi.io/docs/available_software/detail/{{ ext_slug }}">{{ ext.name }}</a> <em>(extension)</em></span> |
43 | | - <br/> |
44 | | - <p class="software-description"> |
45 | | - {% if ext.type == "python" -%} Python package{% elif ext.type == "r" -%}R library{% elif ext.type == "perl" -%}Perl module{% endif %} included as extension to the following |
46 | | - software installations: |
47 | | - <ul> |
48 | | - {% for parent in ext.parents %} |
49 | | - {% set parent_slug = parent | replace(' ', '-') %} |
50 | | - <li><a href="https://eessi.io/docs/available_software/detail/{{ parent_slug }}">{{ parent }}</a></li> |
51 | | - {% endfor %} |
52 | | - </p> |
53 | | - </ul> |
54 | | - </span> |
| 62 | +{% endif %} |
55 | 63 | {% endfor %} |
56 | 64 |
|
57 | 65 | </div> |
58 | 66 |
|
| 67 | +--- |
| 68 | + |
59 | 69 | <small><em>Last update: {{ data.timestamp }}</em></small> |
0 commit comments