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).
- 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...")
- 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...")
- 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...")
- 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...")
- 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...")
- 13:48, 16 June 2026 Honfi001 talk contribs created page HPC Advanced/Preparation Exercise (Created page with "= HPC Basics Refresher — Weather Data Analyser = {{Note|'''Who is this for?''' This is a self-paced preparation exercise for people who are attending the '''HPC Advanced''' course but did '''not''' attend '''HPC Basics'''. Working through it end to end means you arrive at the advanced course already comfortable with environment variables, virtual environments, launcher scripts, interactive jobs, and SLURM batch submission on '''Anunna'''.}} '''The application:''' a s...")
- 09:17, 11 June 2026 Honfi001 talk contribs created page Linux Basic/Linux Self Assessment (Created page with "= Linux Basics — Self-Assessment = This page lets you verify that you have mastered the material from the Linux Basics Course. Work through the parts in order on '''Anunna'''. The final challenge produces a report file that proves you completed every step — submit (or keep) that file as evidence. '''Prerequisites:''' an Anunna account and the course data at <code>/lustre/shared/hpcCourses/shell-lesson-data.zip</code>. '''Rules:''' * Do everything from the comm...")
- 09:42, 25 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-GPUs (Created page with "= Running Apptainer with GPUs = Apptainer can pass through GPU hardware from the host into a container, allowing you to run GPU-accelerated workloads (such as deep learning inference or training) inside a fully contained environment. This page covers how to use both NVIDIA and AMD GPUs on the Anunna cluster. '''Important:''' Before you begin, make sure the following are in place: * Your <code>.sif</code> image files should be stored on '''Lustre''' (e.g. in your scrat...")
- 09:18, 25 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-Introduction (Created page with "= Introduction to Apptainer = == What is Apptainer? == Apptainer (formerly known as Singularity) is a container platform designed for High Performance Computing (HPC) environments. If you have heard of Docker, Apptainer solves a similar problem — it lets you package an application together with all of its dependencies (libraries, tools, configuration) into a single portable unit called a '''container'''. The key difference is that Apptainer was built from the ground...")
- 12:32, 12 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-DefinitionFiles (Created page with "= Apptainer Definition Files: Building Containers from a Recipe = '''Important:''' Before you begin, make sure the following are in place: * You are running on a '''compute node''', not a login node. Request an interactive session first (e.g. via <code>srun</code> or your scheduler). * Your <code>.sif</code> image files should be stored on '''Lustre''' (e.g. in your scratch space), not in your home directory. SIF files can be large and will eat through your home quota...")
- 12:22, 12 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-FakerootAndSandbox (Created page with "= Apptainer Sandbox: Modifying Containers Interactively = '''Important:''' Before you begin, make sure the following are in place: * You are running on a '''compute node''', not a login node. Request an interactive session first (e.g. via <code>srun</code> or your scheduler). * Your <code>.sif</code> image files should be stored on '''Lustre''' (e.g. in your scratch space), not in your home directory. SIF files can be large and will eat through your home quota fast. *...")
- 09:59, 12 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-FakerootAndOverlays (Created page with "= Apptainer Overlays: Modifying Container Images = '''Important:''' Before you begin, make sure the following are in place: * You are running on a '''compute node''', not a login node. Request an interactive session first (e.g. via <code>srun</code> or your scheduler). * Your <code>.sif</code> image files should be stored on '''Lustre''' (e.g. in your scratch space), not in your home directory. SIF files can be large and will eat through your home quota fast. * Set you...")
- 09:09, 12 March 2026 Honfi001 talk contribs created page Tutorials/Apptainer-PullingImages (Add message about storing image in lustre) Tag: Visual edit
- 13:55, 11 March 2026 Honfi001 talk contribs created page Main Page/Tutorials/Apptainer (Created page with "This page contains a list of tutorials related to the usage of apptainer in Anunna.")
- 13:55, 11 March 2026 Honfi001 talk contribs created page Main Page/Tutorials (Created page with " =Tutorials= This page contains an index of various tutorials specific to the Anunna supercomputer.")
- 18:01, 25 February 2026 Honfi001 talk contribs created page File:Jupyter-form-20260225.png
- 18:01, 25 February 2026 Honfi001 talk contribs uploaded File:Jupyter-form-20260225.png
- 14:23, 25 February 2026 Honfi001 talk contribs created page Anunna Shell Access (Created page with "Anunna Shell Access is a web based bash shell terminal emulator available at the Anunna apps portal. This application provides quick access to a bash session in one of the login nodes. User's are able to select a theme for their terminal session on the top right corner of the screen. When a session times out, just refresh your browser tab and it should reconnect. Since this runs in a browser, users should mind that some keyboard shortcuts may not work properly, e...") Tag: Visual edit
- 12:15, 25 February 2026 Honfi001 talk contribs created page File:RStudio-connect-20260225.png
- 12:15, 25 February 2026 Honfi001 talk contribs uploaded File:RStudio-connect-20260225.png
- 11:59, 25 February 2026 Honfi001 talk contribs created page File:RStudio-form-20260225.png
- 11:59, 25 February 2026 Honfi001 talk contribs uploaded File:RStudio-form-20260225.png
- 11:42, 25 February 2026 Honfi001 talk contribs created page File:OOD20260225.png
- 11:42, 25 February 2026 Honfi001 talk contribs uploaded File:OOD20260225.png
- 09:50, 25 February 2026 Honfi001 talk contribs created page File:WUR Linux Basics Course 2026 Feb.pdf (Latest Linux Basics slides from the Feb/26 session)
- 09:50, 25 February 2026 Honfi001 talk contribs uploaded File:WUR Linux Basics Course 2026 Feb.pdf (Latest Linux Basics slides from the Feb/26 session)
- 09:40, 25 February 2026 Honfi001 talk contribs created page File:WUR Linux Basics Course.pdf
- 09:40, 25 February 2026 Honfi001 talk contribs uploaded File:WUR Linux Basics Course.pdf
- 17:13, 20 November 2025 Honfi001 talk contribs created page Tutorials (Tutorials Page) Tag: Visual edit
- 11:23, 3 July 2025 Honfi001 talk contribs created page Template:Tip (Created page with "<div style="border: 2px solid #1c873b; background-color: #e8f8ee; padding: 10px 15px; border-radius: 6px; margin: 1em 0;"> <strong>💡 Tip:</strong> {{{1}}} </div>")
- 11:22, 3 July 2025 Honfi001 talk contribs created page Template:Note (Created page with "<div style="border: 2px solid #4e7cc7; background-color: #eef4fa; padding: 10px 15px; border-radius: 6px; margin: 1em 0;"> <strong>ℹ️ Note:</strong> {{{1}}} </div>")
- 11:21, 3 July 2025 Honfi001 talk contribs created page Template:Warning (Created page with "<div style="border: 2px solid #e03c3c; background-color: #fee; padding: 10px 15px; border-radius: 6px; margin: 1em 0;"> <strong>⚠️ Warning:</strong> {{{1}}} </div>")
- 13:10, 13 January 2025 Honfi001 talk contribs created page Python (Created page with "Python is a high-level, interpreted programming language that has gained widespread popularity for its readability, versatility, and user-friendly syntax. Created by Guido van Rossum and first released in 1991, Python was designed to emphasize code clarity and reduce the complexity often associated with other languages. Its straightforward, English-like syntax makes it a natural choice for beginners, while its power and flexibility continue to attract experienced develop...")
- 15:35, 2 December 2024 Honfi001 talk contribs created page Aliases and local variables (Created page with " * motivation for aliases and variables * ===Example ~/.bash_aliases=== <pre> #!/bin/bash #Define editor editor='nano' #or vim # Bash files commands alias ebc="${editor} ${HOME}/.bashrc" alias sbc="source ${HOME}/.bashrc" alias eba="${editor} ${HOME}/.bash_aliases" alias sba="source ${HOME}/.bash_aliases" # ls aliases alias ll="ls -alth" alias sl='ls' #location variables export mySCRATCH=/lustre/scratch/GUESTS/$USER export myBKP=/lustre/backup/GUESTS/$USER expor...")
- 10:04, 8 August 2024 Honfi001 talk contribs created page Apptainer (Created page with "Apptainer is a container platform. It allows you to create and run containers that package up pieces of software in a way that is portable and reproducible. You can build a container using Apptainer on your laptop, and then run it on many of the largest HPC clusters in the world, local university or company clusters, a single server, in the cloud, or on a workstation down the hall. Your container is a single file, and you don’t have to worry about how to install all th...")
- 09:12, 1 August 2024 Honfi001 talk contribs created page R (Created page with "=R= At the HPC R can be used in the command line with batch scripts submitted via slurm or via a web GUI, RStudio, through Open Ondemand. ==Modules== One version of R is installed for every year. These are accessible through environment modules. Thus in order to access a specific version of R one must first load the year module, followed by the available R version for that year. Additionally, extension bundle modules for R are also present.These modules contain a lis...")
- 08:44, 17 July 2024 Honfi001 talk contribs created page Modules (Modules in anunna: new section)
- 14:12, 19 March 2024 User account Honfi001 talk contribs was created automatically