New pages
Jump to navigation
Jump to search
24 August 2026
- 14:1914:19, 24 August 2026 Uv (hist | edit) [10,964 bytes] Honfi001 (talk | contribs) (Created page with "{{DISPLAYTITLE:uv}} uv is a tool for installing Python packages and for managing the environments they live in. It does the same work as <code>pip</code> and <code>venv</code>, and it does it a great deal faster. This page explains what uv is, how to load it on Anunna, where it keeps your files, and how to use it for everyday work. It also explains what uv is '''not''' the right tool for: the packages it installs are not built for our hardware, so when the speed of you...")
- 10:2510:25, 24 August 2026 FrequentlyAskedQuestions (hist | edit) [43 bytes] Honfi001 (talk | contribs) (Created page with "{{DISPLAYTITLE:Frequently Asked Questions}}")
19 August 2026
- 14:5114:51, 19 August 2026 Best-Practices (hist | edit) [740 bytes] Honfi001 (talk | contribs) (Created page with "==Best Practices==")
18 August 2026
- 14:2714:27, 18 August 2026 Python/uv (hist | edit) [10,963 bytes] Honfi001 (talk | contribs) (Created page with "{{DISPLAYTITLE:uv}} uv is a tool for installing Python packages and for managing the environments they live in. It does the same work as <code>pip</code> and <code>venv</code>, and it does it a great deal faster. This page explains what uv is, how to load it on Anunna, where it keeps your files, and how to use it for everyday work. It also explains what uv is '''not''' the right tool for: the packages it installs are not built for our hardware, so when the speed of you...")
17 August 2026
- 15:0915:09, 17 August 2026 Tutorials/Apptainer-Conda (hist | edit) [7,293 bytes] Honfi001 (talk | contribs) (Created page with "{{DISPLAYTITLE:Totorial: Conda in an Apptainer Container}} = Running a Conda Environment in a Container = Sometimes a piece of software is published only as a conda package, with no module, no Python-only equivalent and no ready-made image. Building it into a container is the cleanest way to run it on Anunna: the environment is created once, on a compute node, and afterwards it is a single file that behaves the same way every time you use it. Read Python/Conda firs...")
- 13:4213:42, 17 August 2026 Python/Conda (hist | edit) [12,449 bytes] Honfi001 (talk | contribs) (Created page with "Conda is a tool for installing scientific software and keeping it in self-contained folders called environments. You will meet it most often in bioinformatics, data science and machine learning, where a great deal of software is published this way. This page explains what Anaconda and Mamba are, why we do not recommend them on Anunna, what to use instead, and — if you have no alternative — how to use conda here with the least trouble. == Introduction == === What i...")
12 August 2026
- 11:5211:52, 12 August 2026 Python/Modules (hist | edit) [7,600 bytes] Honfi001 (talk | contribs) (Created page with "= Modules = Anunna provides one Python version per module bucket, plus bundle modules that carry a curated set of common extensions. Load a bucket, then the Python module: * '''2023''': <code>Python/3.11.3</code> * '''2024''': <code>Python/3.12.3</code> * '''2024''': <code>Python/3.13.1</code> <syntaxhighlight lang="bash"> module load 2024 module load Python/3.12.3 </syntaxhighlight> The bundle module <code>Python-bundle-PyPI</code> adds ma...")
5 August 2026
- 14:4014:40, 5 August 2026 IntelMPI (hist | edit) [12,183 bytes] Honfi001 (talk | contribs) (Created page with "'''Intel MPI''' is the other MPI implementation available on Anunna, alongside OpenMPI. It arrives as part of the Intel toolchain, together with the Intel compilers and the Intel Math Kernel Library (MKL). Everything general about MPI — that it runs one program as many cooperating processes, that it has to be built into the program, and when it is the right tool at all — is covered on Multi-Process Workflows. This page is the Intel-sp...")
- 13:4313:43, 5 August 2026 OpenMPI (hist | edit) [14,775 bytes] Honfi001 (talk | contribs) (Created page with "'''OpenMPI''' is the MPI library Anunna is built around. MPI — the Message Passing Interface — is how a single program runs as many cooperating processes at once, each with its own private memory, passing messages between themselves as the calculation proceeds. It is what lets one job use more than one node. This page is the practical side: which OpenMPI modules exist here, how to launch a job on one node and across several, and how to choose the network transport,...")
- 09:5409:54, 5 August 2026 Workflows/Multi-Process (hist | edit) [11,748 bytes] Honfi001 (talk | contribs) (Created page with "Multi-threaded work gave one process many arms, and then ran into a wall: threads share memory, and shared memory stops at the edge of the machine. This page is how a single calculation gets past that wall — not by growing one process, but by running '''many separate processes''', each with its own private memory, that send messages to each other as the calculation proceeds. The standard way to do that is '''MPI''', the Message Passing Inte...")
- 07:3107:31, 5 August 2026 Workflows/Embarassinly-Parallel (hist | edit) [11,729 bytes] Honfi001 (talk | contribs) (Created page with "This tutorial is a gentle, hands-on introduction to '''parallel computing on Anunna'''. Instead of a heavy scientific code, it uses one friendly problem — estimating the number π by throwing random darts — and runs the ''same'' calculation across every kind of parallelism the cluster offers: a single core, many threads, many processes, multiple nodes, and a GPU. Because the problem stays the same, you can see exactly what each step up the ladder buys you. You do no...")
28 July 2026
- 19:1519:15, 28 July 2026 Workflows/Multi-threaded (hist | edit) [7,827 bytes] Honfi001 (talk | contribs) (Created page with "Serial ran one program on one core. This page takes that same job and lets the program spread its work across '''many''' cores on the '''same''' machine — still one process, but now with several ''threads'' inside it, all sharing the same memory. It is the gentlest real step up the ladder, because for most tools someone else already did the hard part: the program already knows how to use extra cores. Your job is only to give it some, and...")
27 July 2026
- 10:3510:35, 27 July 2026 Workflows/Serial (hist | edit) [5,636 bytes] Honfi001 (talk | contribs) (Created page with "Every other page in this section describes a way of splitting work across many cores. This one describes ''not'' doing that — one program, running on a single core, from start to finish. It is the baseline, and, to be honest up front, it is not a parallel workflow at all. It earns a page anyway, for two reasons. Most software you did not ''specifically'' choose for its parallelism runs this way, so this is where many jobs on Anunna may actually belong. And every othe...") originally created as "Workflows/Serial-Workflows"
23 July 2026
- 15:1815:18, 23 July 2026 Workflows/Parallel-Computing (hist | edit) [7,702 bytes] Honfi001 (talk | contribs) (Created page with "Your analysis runs. It just runs for too long, or it no longer fits on one machine. '''Parallel computing''' is the answer to both, and this page is the map: what it actually means on Anunna, and which of the six workflow types below is yours. Each section is a short paragraph and a link. Read them, recognise your own problem in one of them, and follow it. If you would rather learn by doing, the π estimation tutorial walks the sa...") originally created as "Workflows/Paralle-Computing"
14 July 2026
- 11:5811:58, 14 July 2026 Unblocking your IP (hist | edit) [245 bytes] Haars001 (talk | contribs) (Created page with "If you enter the wrong credentials when trying to login over SSH, your IP address will be blocked from further access for a day. You can unblock your IP by going to https://unban.anunna.wur.nl/ from your blocked IP, log in and unblock yourself.") Tag: Visual edit
24 June 2026
- 08:4008:40, 24 June 2026 Tutorials/Parallelism-Estimating-Pi (hist | edit) [15,432 bytes] Honfi001 (talk | contribs) (Created page with "This tutorial is a gentle, hands-on introduction to '''parallel computing on Anunna'''. Instead of a heavy scientific code, it uses one friendly problem — estimating the number π by throwing random darts — and runs the ''same'' calculation across every kind of parallelism the cluster offers: a single core, many threads, many processes, multiple nodes, and a GPU. Because the problem stays the same, you can see exactly what each step up the ladder buys you. You do no...")
19 June 2026
- 12:2112:21, 19 June 2026 Grant Support & Acknowledgement (hist | edit) [4,908 bytes] Haars001 (talk | contribs) (IA migration §11: new Grant Support Documentation skeleton (P2.31) (via create-page on MediaWiki MCP Server)) originally created as "Grant Support Documentation"
- 12:2112:21, 19 June 2026 External Collaborator Access (hist | edit) [1,406 bytes] Haars001 (talk | contribs) (IA migration §11: new External Collaborator Access skeleton (P2.30) (via create-page on MediaWiki MCP Server))
- 12:2012:20, 19 June 2026 Resource Allocation Requests (hist | edit) [570 bytes] Haars001 (talk | contribs) (IA migration §11: new Resource Allocation Requests skeleton (P2.29) (via create-page on MediaWiki MCP Server))
- 12:2012:20, 19 June 2026 Handling Sensitive Data (GDPR, etc.) (hist | edit) [1,046 bytes] Haars001 (talk | contribs) (IA migration §6: new Handling Sensitive Data skeleton (P2.16) (via create-page on MediaWiki MCP Server))
- 12:2012:20, 19 June 2026 Remote Access (VPN, Gateway) (hist | edit) [1,034 bytes] Haars001 (talk | contribs) (IA migration §3: new Remote Access (VPN, Gateway) skeleton (P2.7) (via create-page on MediaWiki MCP Server))
- 12:1512:15, 19 June 2026 Data Lifecycle Policy (hist | edit) [1,937 bytes] Haars001 (talk | contribs) (IA migration §6: new Data Lifecycle Policy (P2.13) (via create-page on MediaWiki MCP Server))
- 12:1512:15, 19 June 2026 Data Transfer Best Practices (hist | edit) [1,338 bytes] Haars001 (talk | contribs) (IA migration §6: new Data Transfer Best Practices (P2.15) (via create-page on MediaWiki MCP Server))
- 12:1512:15, 19 June 2026 Data storage best practices (hist | edit) [1,443 bytes] Haars001 (talk | contribs) (IA migration §6: new Data storage best practices (P2.14) (via create-page on MediaWiki MCP Server))
- 12:1512:15, 19 June 2026 Julia (hist | edit) [1,822 bytes] Haars001 (talk | contribs) (IA migration §5: new Julia page (P2.11) (via create-page on MediaWiki MCP Server))
- 07:5607:56, 19 June 2026 For PIs (hist | edit) [671 bytes] Haars001 (talk | contribs) (IA migration §1c: create For PIs section landing hub (via create-page on MediaWiki MCP Server))
- 07:5607:56, 19 June 2026 Training (hist | edit) [326 bytes] Haars001 (talk | contribs) (IA migration §1c: create Training section landing hub (via create-page on MediaWiki MCP Server))
- 07:5607:56, 19 June 2026 Workflows (hist | edit) [821 bytes] Haars001 (talk | contribs) (IA migration §1c: create Workflows section landing hub (via create-page on MediaWiki MCP Server))
- 07:5607:56, 19 June 2026 Storage (hist | edit) [830 bytes] Haars001 (talk | contribs) (IA migration §1c: create Storage section landing hub (via create-page on MediaWiki MCP Server))
- 07:5507:55, 19 June 2026 Software (hist | edit) [497 bytes] Haars001 (talk | contribs) (IA migration §1c: create Software section landing hub (via create-page on MediaWiki MCP Server)) Tag: Recreated
- 07:5507:55, 19 June 2026 Scheduling (hist | edit) [693 bytes] Haars001 (talk | contribs) (IA migration §1c: create Scheduling section landing hub (via create-page on MediaWiki MCP Server))
- 07:5507:55, 19 June 2026 System Access (hist | edit) [594 bytes] Haars001 (talk | contribs) (IA migration §1c: create System Access section landing hub (via create-page on MediaWiki MCP Server))
- 07:5507:55, 19 June 2026 Get Started (hist | edit) [540 bytes] Haars001 (talk | contribs) (IA migration §1c: create Get Started section landing hub (via create-page on MediaWiki MCP Server))
- 07:5507:55, 19 June 2026 About (hist | edit) [754 bytes] Haars001 (talk | contribs) (IA migration §1c: create About section landing hub (via create-page on MediaWiki MCP Server))
- 07:3407:34, 19 June 2026 Storage Requests (hist | edit) [883 bytes] Haars001 (talk | contribs) (IA migration §11: new Storage Requests (via create-page on MediaWiki MCP Server))
- 07:3407:34, 19 June 2026 Dos and Don'ts (hist | edit) [1,340 bytes] Haars001 (talk | contribs) (IA migration §11: new Dos and Don'ts checklist (via create-page on MediaWiki MCP Server))
- 07:2907:29, 19 June 2026 Managing Group Members (hist | edit) [1,485 bytes] Haars001 (talk | contribs) (IA migration §11: new Managing Group Members (group basics from Shared folders; PI-focused) (via create-page on MediaWiki MCP Server))
- 07:2607:26, 19 June 2026 Reporting Usage (hist | edit) [2,924 bytes] Haars001 (talk | contribs) (IA migration §11: merge Get my bill + Cost alerting into Reporting Usage (SACCT→Monitoring Jobs; Tariffs sibling) (via create-page on MediaWiki MCP Server))
- 07:2007:20, 19 June 2026 Our User community (hist | edit) [3,671 bytes] Haars001 (talk | contribs) (IA migration §10: new User's group (Anunna Users Teams community; merges Meetings stub) (via create-page on MediaWiki MCP Server)) originally created as "User's group"
- 07:2007:20, 19 June 2026 Known Issues (hist | edit) [633 bytes] Haars001 (talk | contribs) (IA migration §10: new Known Issues (absorbs Hints for courses) (via create-page on MediaWiki MCP Server))
- 07:1407:14, 19 June 2026 Reporting Incidents (hist | edit) [694 bytes] Haars001 (talk | contribs) (IA migration §10: new Reporting Incidents (split from Support) (via create-page on MediaWiki MCP Server))
- 07:1407:14, 19 June 2026 Support Ticket System (hist | edit) [920 bytes] Haars001 (talk | contribs) (IA migration §10: new Support Ticket System (split from Support) (via create-page on MediaWiki MCP Server))
18 June 2026
- 14:4514:45, 18 June 2026 Glossary of Terms (hist | edit) [3,195 bytes] Haars001 (talk | contribs) (IA migration §9: new Glossary of Terms (P2.22) (via create-page on MediaWiki MCP Server))
- 14:2814:28, 18 June 2026 Workshops (hist | edit) [768 bytes] Haars001 (talk | contribs) (IA migration §9: new Workshops hub (P1.9.3) linking the live course pages + 2026 dates (via create-page on MediaWiki MCP Server))
- 14:2214:22, 18 June 2026 Reproducibility Guidelines (hist | edit) [1,931 bytes] Haars001 (talk | contribs) (IA migration §8: new Reproducibility Guidelines (versions/containers/Git/WUR GitLab/workflow engines; absorbs Manual GitLab pointer) (via create-page on MediaWiki MCP Server))
- 14:2214:22, 18 June 2026 Workflow Migration from Laptop to HPC (hist | edit) [2,323 bytes] Haars001 (talk | contribs) (IA migration §8: new Workflow Migration from Laptop to HPC (onboarding guide) (via create-page on MediaWiki MCP Server))
- 14:2214:22, 18 June 2026 Debugging Jobs (hist | edit) [2,534 bytes] Haars001 (talk | contribs) (IA migration §8: new Debugging Jobs page (via create-page on MediaWiki MCP Server))
- 13:0313:03, 18 June 2026 Performance Optimization/Multiple nodes (arrayjobs) (hist | edit) [1,371 bytes] Haars001 (talk | contribs) (IA migration §8: new Performance Optimization/Multiple nodes (arrayjobs) (array jobs as scaling technique) (via create-page on MediaWiki MCP Server))
- 13:0313:03, 18 June 2026 Performance Optimization/Multiple CPUs (hist | edit) [1,729 bytes] Haars001 (talk | contribs) (IA migration §8: new Performance Optimization/Multiple CPUs (threads/OpenMP within one node) (via create-page on MediaWiki MCP Server))
- 12:4812:48, 18 June 2026 Apps Portal (hist | edit) [919 bytes] Haars001 (talk | contribs) (IA migration §7: create Apps Portal section landing hub (P1c.7) (via create-page on MediaWiki MCP Server))