| title | Machines |
|---|---|
| toc | false |
| classes | wide |
{% include machines-map.html %}
{% for item in site.machines %} {% if item.pool == nil %} {% endif %} {% endfor %}| Machine | Model | OS | Threads | Location | Notes |
|---|---|---|---|---|---|
| {{item.name}} | {{item.manufacturer}} {{item.model}} | {{item.os}} | {{item.threads}} | {{item.location}} | {{item.notes}} |
{% assign pools = "linux-x86_64,linux-ppc64,linux-arm64,windows-x86_64,linux-s390x,linux-riscv64,macos-x86_64,macos-arm64,windows-amd64,openbsd-amd64" | split: ',' %} {% for pool in pools %}
{% for item in site.machines %} {% if item.pool == pool %} {% endif %} {% endfor %}| Machine | Model | OS | Threads | Location |
|---|---|---|---|---|
| {{item.name}} | {{item.manufacturer}} {{item.model}} | {{item.os}} | {{item.threads}} | {{item.location}} |
{% endfor %}