Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of HPCwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:20, 28 August 2026 Itter003 talk contribs moved page Fair Use Policy to Responsible Use Policy
- 15:17, 28 August 2026 Itter003 talk contribs moved page User's group to Our User community
- 15:03, 28 August 2026 Itter003 talk contribs moved page Grant Support Documentation to Grant Support & Acknowledgement
- 14:13, 28 August 2026 Prins089 talk contribs deleted page Project Creation (We will write this page when we actually have the concept of projects implemented)
- 13:49, 28 August 2026 Prins089 talk contribs created page File:Anunna-conceptual.png
- 13:49, 28 August 2026 Prins089 talk contribs uploaded File:Anunna-conceptual.png
- 13:46, 28 August 2026 Prins089 talk contribs created page File:Conceptual-diagram.svg
- 13:46, 28 August 2026 Prins089 talk contribs uploaded File:Conceptual-diagram.svg
- 14:19, 24 August 2026 Honfi001 talk contribs created page Uv (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:25, 24 August 2026 Honfi001 talk contribs created page FrequentlyAskedQuestions (Created page with "{{DISPLAYTITLE:Frequently Asked Questions}}")
- 14:51, 19 August 2026 Honfi001 talk contribs created page Best-Practices (Created page with "==Best Practices==")
- 14:27, 18 August 2026 Honfi001 talk contribs created page Python/uv (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...")
- 15:09, 17 August 2026 Honfi001 talk contribs created page Tutorials/Apptainer-Conda (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:42, 17 August 2026 Honfi001 talk contribs created page Python/Conda (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...")
- 11:52, 12 August 2026 Honfi001 talk contribs created page Python/Modules (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...")
- 13:34, 6 August 2026 User account He047 talk contribs was created automatically
- 14:40, 5 August 2026 Honfi001 talk contribs created page IntelMPI (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:43, 5 August 2026 Honfi001 talk contribs created page OpenMPI (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:54, 5 August 2026 Honfi001 talk contribs created page Workflows/Multi-Process (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:31, 5 August 2026 Honfi001 talk contribs created page Workflows/Embarassinly-Parallel (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...")
- 07:41, 4 August 2026 User account Oyieng01 talk contribs was created automatically
- 19:15, 28 July 2026 Honfi001 talk contribs created page Workflows/Multi-threaded (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...")
- 06:48, 28 July 2026 User account Roest039 talk contribs was created automatically
- 10:36, 27 July 2026 Honfi001 talk contribs moved page Workflows/Serial-Workflows to Workflows/Serial without leaving a redirect
- 10:35, 27 July 2026 Honfi001 talk contribs created page Workflows/Serial-Workflows (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...")
- 15:22, 23 July 2026 Honfi001 talk contribs moved page Workflows/Paralle-Computing to Workflows/Parallel-Computing without leaving a redirect
- 15:18, 23 July 2026 Honfi001 talk contribs created page Workflows/Paralle-Computing (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...")
- 12:49, 23 July 2026 Prins089 talk contribs deleted page System Status Page (The wiki is not meant for status tracking, it's a knowledge base. We need an actual status page (a pod in kubernetes with rudimentary monitoring), and when we have that, let's link to it from the wiki. But now we do not have this)
- 11:48, 23 July 2026 Honfi001 talk contribs deleted page Conda for teaching (content was: "{{Warning|This page describes the older cluster setup: the <code>/cm/shared/...</code> paths and the tcl modulefiles below are from the previous (Bright) cluster and do '''not''' match current Anunna, which uses the Lustre filesystem and EasyBuild buckets. The general approach — a shared conda environment registered as a Jupyter kernel — still applies, but the paths and commands need updating. For the current way to set up course kernels, see Steps for courses and Pyt...")
- 11:34, 20 July 2026 User account Adm h101 talk contribs was created automatically
- 11:28, 20 July 2026 Prins089 talk contribs created page Talk:Who Can Access? (Created page with "This page should be expanded with text and contact info about the food valley cluster deal. Access for external companies via SRF")
- 11:03, 20 July 2026 Prins089 talk contribs created page User:Prins089 (Created page with "[https://www.vcard.wur.nl/Views/Profile/View.aspx?id=88524 Fons Prinsen VCard] System Administrator for Anunna.") Tag: Visual edit
- 11:58, 14 July 2026 Haars001 talk contribs created page Unblocking your IP (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
- 08:50, 14 July 2026 Haars001 talk contribs changed group membership for Hjmegens: revoked bureaucrat and administrator
- 08:49, 14 July 2026 Haars001 talk contribs changed group membership for Dawes001: revoked bureaucrat and administrator
- 09:08, 2 July 2026 Haars001 talk contribs changed group membership for Prins089: granted bureaucrat and administrator
- 09:08, 2 July 2026 Haars001 talk contribs changed group membership for Haars001: granted bureaucrat and administrator
- 14:57, 1 July 2026 User account Dulle001 talk contribs was created automatically
- 07:29, 26 June 2026 Haars001 talk contribs created page File:Hpc-basics-2026-06.pdf
- 07:29, 26 June 2026 Haars001 talk contribs uploaded File:Hpc-basics-2026-06.pdf
- 07:26, 26 June 2026 Haars001 talk contribs created page File:Hpc-advanced-2026-06.pdf
- 07:26, 26 June 2026 Haars001 talk contribs uploaded File:Hpc-advanced-2026-06.pdf
- 09:15, 24 June 2026 Honfi001 talk contribs created page File:Pi-tutorial-speedup-vs-cores.png (Speedup against the serial baseline. The dashed line is perfect (linear) speedup; real runs sit just below it.)
- 09:15, 24 June 2026 Honfi001 talk contribs uploaded File:Pi-tutorial-speedup-vs-cores.png (Speedup against the serial baseline. The dashed line is perfect (linear) speedup; real runs sit just below it.)
- 09:14, 24 June 2026 Honfi001 talk contribs created page File:Pi-tutorial-walltime-vs-cores.png (Wall time falls as cores are added. Note both axes are logarithmic; a straight line here means near-ideal scaling.)
- 09:14, 24 June 2026 Honfi001 talk contribs uploaded File:Pi-tutorial-walltime-vs-cores.png (Wall time falls as cores are added. Note both axes are logarithmic; a straight line here means near-ideal scaling.)
- 08:59, 24 June 2026 Honfi001 talk contribs created page File:Pi-tutorial-best-per-approach.png (Plot of comparing the performance of different parallelization strategies for the MonteCarlo Pi Tutorial)
- 08:59, 24 June 2026 Honfi001 talk contribs uploaded File:Pi-tutorial-best-per-approach.png (Plot of comparing the performance of different parallelization strategies for the MonteCarlo Pi Tutorial)
- 08:40, 24 June 2026 Honfi001 talk contribs created page Tutorials/Parallelism-Estimating-Pi (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...")
- 09:25, 20 June 2026 Delete page script talk contribs deleted page ABGC Journal Club