<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Home | HPC Portal</title><link>https://portal.hpc.hsu-hh.de/</link><description>Recent content on Home | HPC Portal</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 24 Jun 2026 16:00:00 +0200</lastBuildDate><atom:link href="https://portal.hpc.hsu-hh.de/index.xml" rel="self" type="application/rss+xml"/><item><title>Gurobi Hardware and Performance</title><link>https://portal.hpc.hsu-hh.de/documentation/gurobi/hardware-performance/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/gurobi/hardware-performance/</guid><description>&lt;h2 id="how-does-gurobi-perform-on-different-computer-hardware">How does Gurobi perform on different computer hardware?&lt;/h2>
&lt;ul>
&lt;li>It is difficult to predict how Gurobi performs on a certain machine. In general, the solver benefits from high CPU speeds and low-latency, high-bandwidth memory.&lt;/li>
&lt;li>Having multiple cores at your disposal can improve performance, but this is highly problem-dependent. This is also true for the amount of memory (RAM).&lt;/li>
&lt;li>More channels, e.g., DDR4, increase the data throughput and are preferred over single-channel RAM.&lt;/li>
&lt;li>If you are solving a large MIP in parallel, it is best to use a system with the fastest possible clock rate, using the fastest available memory, with as many fully populated memory channels as are available. Current Intel Xeon systems support up to six channels per CPU, while current AMD EPYC systems support up to eight. Desktop and low-end server configurations typically have fewer channels.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360013196532-How-does-Gurobi-perform-on-different-computer-hardware-">How does Gurobi perform on different computer hardware?&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.cpubenchmark.net/singleThread.html">Single Thread benchmarks&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.memorybenchmark.net/">Memory benchmarks&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="why-does-gurobi-perform-differently-on-different-machines">Why does Gurobi perform differently on different machines?&lt;/h2>
&lt;ul>
&lt;li>Solving the same model on different machines can result in different solution paths (Performance Variability). Hardware plays an important role and changing the order of variables or constraints or using random seeds can also drastically impact the performance even when the mathematical models are identical.&lt;/li>
&lt;li>The reasons for performance variability are quite diverse and can originate from differences in operating systems, underlying libraries, computer hardware, etc. Gurobi makes many decisions in the search for an optimal solution.&lt;/li>
&lt;li>Gurobi attempts to exploit performance variability when running in &lt;em>ConcurrentMIP mode&lt;/em>. To get a sense of how susceptible your model is in regards to performance variability, you can compare the performance of several runs that only differ in the random seed parameter.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360013196532-How-does-Gurobi-perform-on-different-computer-hardware-">Why does Gurobi perform differently on different machines?&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://opus4.kobv.de/opus4-zib/frontdoor/index/index/docId/1295">MIPLIB 2010: performance variability&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.gurobi.com/documentation/current/refman/concurrentmip.html">ConcurrentMIP mode&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="does-using-more-threads-make-gurobi-faster">Does using more threads make Gurobi faster?&lt;/h2>
&lt;ul>
&lt;li>Continuous models (LP, QP, SOCP):
&lt;ul>
&lt;li>Yes for barrier algorithm.&lt;/li>
&lt;li>No for simplex method.&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>Mixed-Integer Programs:
&lt;ul>
&lt;li>Yes, if a large number of nodes is required.&lt;/li>
&lt;li>No for MIPs that are solved at or near the root node.&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>The default value of threads (corresponding to the value 0) is an automatic setting which will use up to min(32, number of virtual cores) threads, i.e., up to 32 threads on &lt;em>HSUper&lt;/em>.&lt;/li>
&lt;li>In the following cases more threads are often not better (and can be even worse):
&lt;ul>
&lt;li>When the first solution found by the MIP solver is almost always optimal, and that solution isn&amp;rsquo;t found at the root.&lt;/li>
&lt;li>When memory is tight.&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360013419951-Does-using-more-threads-make-Gurobi-faster-">Does using more threads make Gurobi faster?&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.gurobi.com/documentation/10.0/refman/threads.html">Documentation: Threads&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="what-hardware-should-i-select-when-running-gurobi">What hardware should I select when running Gurobi?&lt;/h2>
&lt;ul>
&lt;li>Parallelization effects are model-dependent.&lt;/li>
&lt;li>GPUs do not help.&lt;/li>
&lt;li>The faster the CPU, the better.&lt;/li>
&lt;li>RAM requirements are model-dependent.&lt;/li>
&lt;li>It is crucial to utilize a wide range of instances to ensure that the obtained results robust and represent an accurate picture of the expected load on the system.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/8172407217041-What-hardware-should-I-select-when-running-Gurobi-">What hardware should I select when running Gurobi?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="does-gurobi-support-gpus">Does Gurobi support GPUs?&lt;/h2>
&lt;ul>
&lt;li>GPUs aren&amp;rsquo;t well suited to the needs of an LP/MIP/QP solver (sparse linear algebra not well suited for SIMD).&lt;/li>
&lt;li>Gurobi Optimizer is designed to effectively exploit multiple cores in a CPU.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360012237852-Does-Gurobi-support-GPUs-">Does Gurobi support GPUs?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="are-there-performance-differences-amongst-the-different-gurobi-apis">Are there performance differences amongst the different Gurobi APIs?&lt;/h2>
&lt;ul>
&lt;li>The Gurobi APIs (Java, Python, C++, C#, R, and Matlab) are thin layers built on top of the C API. These APIs collect the data and pass it on to the core library, which is written in C. From a solver and solving performance point of view, there is no difference.&lt;/li>
&lt;li>However, the API can make a difference for the model building part of the code. Model building is in the chosen language.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360034007592-Are-there-performance-differences-amongst-the-different-Gurobi-APIs-">Are there performance differences amongst the different Gurobi APIs?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="what-is-the-correlation-between-problem-size-and-solution-time">What is the correlation between problem size and solution time?&lt;/h2>
&lt;ul>
&lt;li>In general, there is no correlation between problem size and solution time with Gurobi. The time it takes Gurobi to find and prove an optimal solution depends on how well the algorithms are able to tackle the particular problem at hand.&lt;/li>
&lt;li>It is often possible to identify such correlations for a particular model family, i.e., a set of models that originates from the same algebraic description but with different data.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360054831671-What-is-the-correlation-between-problem-size-and-solution-time-">What is the correlation between problem size and solution time?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="how-do-i-get-similar-performance-from-gurobi-based-on-parameters-tuned-for-another-solver">How do I get similar performance from Gurobi based on parameters tuned for another solver?&lt;/h2>
&lt;ul>
&lt;li>In terms of performance tuning, there are three types of parameters: termination criteria, tolerance values, and algorithm behavior.&lt;/li>
&lt;li>For termination criteria such as &lt;em>MIPGap&lt;/em> or tolerance values such as &lt;em>IntFeasTol&lt;/em>, Gurobi parameters should correspond closely to those from other solvers.&lt;/li>
&lt;li>In terms of algorithm behavior, it is generally best to start with default values, since default values in Gurobi have been tested to be fast and robust across a wide variety of models.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360013419871-How-do-I-get-similar-performance-from-Gurobi-based-on-parameters-tuned-for-another-solver-">How do I get similar performance from Gurobi based on parameters tuned for another solver?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="is-gurobi-deterministic">Is Gurobi deterministic?&lt;/h2>
&lt;ul>
&lt;li>Gurobi is designed to be deterministic. You always get the same results from the same inputs (model and parameters) on the same computer with the same Gurobi version. Gurobi is also deterministic for parallel optimization.&lt;/li>
&lt;li>Not deterministic for concurrent optimization.&lt;/li>
&lt;li>&lt;strong>References:&lt;/strong>
&lt;ul>
&lt;li>&lt;a href="https://support.gurobi.com/hc/en-us/articles/360031636051-Is-Gurobi-deterministic-">Is Gurobi deterministic?&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul></description></item><item><title>IBM ILOG CPLEX Optimization Studio: Installation on HSUper</title><link>https://portal.hpc.hsu-hh.de/documentation/cplex/installation-hsuper/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/cplex/installation-hsuper/</guid><description>&lt;h2 id="obtain-the-ibm-ilog-cplex-optimization-studio-software">Obtain the IBM ILOG CPLEX Optimization Studio software&lt;/h2>
&lt;ul>
&lt;li>&lt;a href="https://www.ibm.com/products/ilog-cplex-optimization-studio">Download (latest) IBM ILOG CPLEX Optimization Studio software for linux&lt;/a>, e.g., &lt;em>IBM ILOG CPLEX Optimization Studio V22.1.1 for Linux x86-64&lt;/em>, i.e., &lt;em>cplex_studio2211.linux_x86_64.bin&lt;/em>.&lt;/li>
&lt;/ul>
&lt;h2 id="install-ibm-ilog-cplex-optimization-studio-on-hsuper">Install IBM ILOG CPLEX Optimization Studio on &lt;em>HSUper&lt;/em>&lt;/h2>
&lt;ul>
&lt;li>Copy downloaded IBM ILOG CPLEX Optimization Studio software, e.g., &lt;em>cplex_studio2211.linux_x86_64.bin&lt;/em> to &lt;a href="https://www.hsu-hh.de/hpc/en/hsuper/">HSUper&lt;/a>, e.g., via &lt;a href="https://mobaxterm.mobatek.net/">MobaXterm&lt;/a> (only on Windows) or via the &lt;em>scp&lt;/em> command.&lt;/li>
&lt;li>Enter &lt;code>pwd&lt;/code> in the terminal to see the current folder (i.e., your home folder) and copy/remember this path since it is needed during the installation.&lt;/li>
&lt;li>Enter &lt;code>bash cplex_studio2211.linux_x86_64.bin&lt;/code>
in the terminal to install the IBM ILOG CPLEX Optimization Studio software. You are not allowed to use the default install folder &lt;em>/opt/ibm/ILOG/CPLEX_Studio2211&lt;/em>, i.e., use instead for example your home folder (which can be seen by entering &lt;code>pwd&lt;/code> in the terminal) and expand this path for example by &lt;em>/CPLEX_Studio2211&lt;/em> to create a new folder &lt;em>CPLEX_Studio2211&lt;/em> (if this folder does not already exist). This folder will contain the installed IBM ILOG CPLEX Optimization Studio software.&lt;/li>
&lt;li>Add the following content (i.e., assuming you used the folder &lt;em>CPLEX_Studio2211&lt;/em> in your home folder for installation) to the end of your &lt;em>.bashrc&lt;/em> file (e.g., double left click in &lt;em>MobaXterm&lt;/em> on the file to open &lt;em>MobaTextEditor&lt;/em> or use the text editors &lt;em>nano&lt;/em> or &lt;em>vim&lt;/em>):&lt;/li>
&lt;/ul>
&lt;pre tabindex="0">&lt;code>export PATH=$PATH:$HOME/CPLEX_Studio2211/cplex/bin/x86-64_linux
export PATH=$PATH:$HOME/CPLEX_Studio2211/cpoptimizer/bin/x86-64_linux
export PATH=$PATH:$HOME/CPLEX_Studio2211/opl/bin/x86-64_linux
&lt;/code>&lt;/pre>&lt;p>Save the updated &lt;em>.bashrc&lt;/em> file.&lt;/p></description></item><item><title>Gurobi Installation on HSUper</title><link>https://portal.hpc.hsu-hh.de/documentation/gurobi/installation-hsuper/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/gurobi/installation-hsuper/</guid><description>&lt;h2 id="step-1-obtain-the-gurobi-software">&lt;strong>Step 1: Obtain the Gurobi Software&lt;/strong>&lt;/h2>
&lt;ul>
&lt;li>Register or sign in at the &lt;a href="https://portal.gurobi.com/">&lt;strong>Gurobi User Portal&lt;/strong>&lt;/a>&lt;/li>
&lt;li>Download the Gurobi software for Linux from &lt;a href="https://www.gurobi.com/downloads/gurobi-software/">&lt;strong>Gurobi Downloads&lt;/strong>&lt;/a>, e.g., &lt;strong>&lt;code>gurobi12.0.2_linux64.tar.gz&lt;/code>&lt;/strong>.&lt;/li>
&lt;/ul>
&lt;h2 id="step-2-install-gurobi-software-on-hsuper">&lt;strong>Step 2: Install Gurobi Software on HSUper&lt;/strong>&lt;/h2>
&lt;ul>
&lt;li>Copy the downloaded Gurobi software to &lt;a href="https://www.hsu-hh.de/hpc/en/hsuper/">&lt;strong>HSUper&lt;/strong>&lt;/a> without unpacking it beforehand and log in to &lt;a href="https://www.hsu-hh.de/hpc/en/hsuper/">&lt;strong>HSUper&lt;/strong>&lt;/a>. This could be done via:
&lt;ul>
&lt;li>The Web Browser access to &lt;a href="https://hsuper.hsu-hh.de/">&lt;strong>HSUper&lt;/strong>&lt;/a>&lt;/li>
&lt;li>MobaXterm (on Windows)&lt;/li>
&lt;li>The &lt;strong>&lt;code>scp&lt;/code>&lt;/strong> and &lt;strong>&lt;code>ssh&lt;/code>&lt;/strong> commands in your terminal&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>Unpack the Gurobi software by running &lt;strong>&lt;code>tar -xvzf gurobi12.0.2_linux64.tar.gz&lt;/code>&lt;/strong> or equivalent in the terminal, which creates a new folder in this case named &lt;strong>&lt;code>gurobi1202&lt;/code>&lt;/strong>.&lt;/li>
&lt;li>Download and rename the license file from the &lt;a href="https://intranet.hsu-hh.de/go/file/13827/download">&lt;strong>HSU Intranet&lt;/strong>&lt;/a> from &lt;strong>&lt;code>gurobilic.sec&lt;/code>&lt;/strong> to &lt;strong>&lt;code>gurobi.lic&lt;/code>&lt;/strong> and copy it to the &lt;strong>&lt;code>gurobi1202&lt;/code>&lt;/strong> folder.&lt;/li>
&lt;li>Add the following content to the end of your &lt;strong>&lt;code>~/.bashrc&lt;/code>&lt;/strong> file&lt;/li>
&lt;/ul>
&lt;pre tabindex="0">&lt;code>export GUROBI_HOME=&amp;#34;$HOME/gurobi1202/linux64&amp;#34;
export PATH=&amp;#34;${PATH}:${GUROBI_HOME}/bin&amp;#34;
export LD_LIBRARY_PATH=&amp;#34;${LD_LIBRARY_PATH}:${GUROBI_HOME}/lib&amp;#34;
export GRB_LICENSE_FILE=&amp;#34;$HOME/gurobi1202/gurobi.lic&amp;#34;
&lt;/code>&lt;/pre>&lt;p>to install the Gurobi software locally in your actual home folder instead of &lt;strong>&lt;code>/opt&lt;/code>&lt;/strong>.&lt;/p></description></item><item><title>IBM ILOG CPLEX Optimization Studio Solver: Running, Configuration, Tuning</title><link>https://portal.hpc.hsu-hh.de/documentation/cplex/solver/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/cplex/solver/</guid><description>&lt;h2 id="running-ibm-ilog-cplex-optimization-studio-on-hsuper">Running IBM ILOG CPLEX Optimization Studio on &lt;em>HSUper&lt;/em>&lt;/h2>
&lt;ul>
&lt;li>Login on &lt;a href="https://www.hsu-hh.de/hpc/en/hsuper/">HSUper&lt;/a>, e.g., via &lt;a href="https://mobaxterm.mobatek.net/">MobaXterm&lt;/a> (only on Windows), &lt;a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html">PuTTY&lt;/a> or via the &lt;em>ssh&lt;/em> command.&lt;/li>
&lt;li>Use a &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script to submit jobs on &lt;em>HSUper&lt;/em> via entering in the terminal &lt;code>sbatch&lt;/code> (followed by the name of the &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script).&lt;/li>
&lt;li>Enter &lt;code>squeue -u $USER&lt;/code> to see all your jobs in the queue (or replace &lt;em>$USER&lt;/em> by an username); &lt;em>R&lt;/em> at &lt;em>ST&lt;/em> means that your job is currently running.&lt;/li>
&lt;li>Enter &lt;code>squeue --format=&amp;quot;%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R&amp;quot; --me&lt;/code> to extend the length of the output of &lt;em>squeue&lt;/em>.&lt;/li>
&lt;li>Enter &lt;code>scancel -u $USER&lt;/code> to scancel all your jobs or &lt;code>scancel&lt;/code> followed by a jobid to cancel the corresponding job.&lt;/li>
&lt;li>Enter &lt;code>sacct -S now-7days -X --user=$USER --format=&amp;quot;jobid,jobname,user,account,partition,AllocCPUS,AllocNodes,State,ConsumedEnergy,Elapsed,TimeLimit,ExitCode&amp;quot;&lt;/code> to gain information about all your jobs during the last 7 days.&lt;/li>
&lt;li>The &lt;a href="https://www.ibm.com/docs/en/icos/22.1.1?topic=interface-description-oplrun">oplrun&lt;/a> command enables you to execute an OPL model or project from the Windows command line or in a UNIX environment.&lt;/li>
&lt;li>A basic &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script could look like this:&lt;/li>
&lt;/ul>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#!/bin/bash
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --job-name=name ### the name of your job&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --output=%x_%j.out ### the output file for errors etc.&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --nodes=1 ### number of nodes&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --ntasks=1 ### number of (MPI) tasks needed&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --partition=small ### partition (small, small_shared, small_fat, dev)&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --cpus-per-task=72 ### number of threads per task (OMP threads)&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --time=24:00:00 ### maximum wall clock limit for job execution&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>oplrun myModel.mod myData.dat &amp;gt; log.txt
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;ul>
&lt;li>If you want to solve several problems, e.g., with different &lt;em>.mod&lt;/em> or &lt;em>.dat&lt;/em> files or with varying numbers of threads (see How to change parameters in &lt;em>oplrun&lt;/em>), you can add these runs in the same &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script in a new line after
&lt;code>oplrun myModel.mod myData.dat &amp;gt; log.txt&lt;/code>
such that these problems are solved one after the other.&lt;br>
If you want to start all your runs as soon as possible, then you can use individual &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> scripts and submit each of them via &lt;code>sbatch&lt;/code> (followed by the name of the corresponding &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script). Or you could use a &lt;em>bash&lt;/em> script (&lt;code>chmod +x myBash&lt;/code> makes the bash script &lt;em>myBash&lt;/em> executable, &lt;code>./myBash&lt;/code> executes it) to start the different &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> scripts. The following &lt;em>bash&lt;/em> script starts runs for 30 different problems (each problem is indentical except that a different data file is used with j = 1, &amp;hellip;, 30 with start &lt;em>p=1&lt;/em> and end &lt;em>P=30&lt;/em>) and different numbers of threads (i.e., i = 1, 2, 4, 8, 16, 32, 64 with start &lt;em>t=1&lt;/em> and end &lt;em>T=72&lt;/em>).&lt;/li>
&lt;/ul>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#!/bin/bash
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>t&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>T&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">72&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>p&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>P&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">30&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">for&lt;/span> &lt;span style="color:#f92672">((&lt;/span> j&lt;span style="color:#f92672">=&lt;/span>$p ; j&amp;lt;&lt;span style="color:#f92672">=&lt;/span>$P ; j++ &lt;span style="color:#f92672">))&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">do&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">for&lt;/span> &lt;span style="color:#f92672">((&lt;/span> i&lt;span style="color:#f92672">=&lt;/span>$t ; i&amp;lt;&lt;span style="color:#f92672">=&lt;/span>$T ; i*&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">2&lt;/span> &lt;span style="color:#f92672">))&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">do&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> sbatch --job-name&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;threads&lt;/span>$i&lt;span style="color:#e6db74">.problem&lt;/span>$j&lt;span style="color:#e6db74">&amp;#34;&lt;/span> --export&lt;span style="color:#f92672">=&lt;/span>ALL,i&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>$i&lt;span style="color:#e6db74">&amp;#34;&lt;/span>,j&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>$j&lt;span style="color:#e6db74">&amp;#34;&lt;/span> var_param_oplrun.slurm
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">done&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">done&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>The &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script &lt;em>var_param_oplrun.slurm&lt;/em> is identical to the &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script from above, except that the line&lt;br>
&lt;code>oplrun myModel.mod myData.dat &amp;gt; log.txt&lt;/code>&lt;br>
is changed to&lt;br>
&lt;code>oplrun -D myThreads=$i myModel.mod myData$j.dat &amp;gt; log$i.$j.txt&lt;/code>.&lt;/p></description></item><item><title>Acknowledgement</title><link>https://portal.hpc.hsu-hh.de/documentation/cplex/acknowledgement/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/cplex/acknowledgement/</guid><description>&lt;p>Created by &lt;strong>&lt;a href="mailto:leinen@hsu-hh.de">Dr. rer. nat. Willi Leinen&lt;/a>&lt;/strong>, Helmut-Schmidt-Universität,
&lt;strong>&lt;a href="https://www.hsu-hh.de/hpc/team/">Chair for High Performance Computing&lt;/a>&lt;/strong>.&lt;br>
Last update: 12/08/2024&lt;/p></description></item><item><title>Gurobi Solver: Running, Configuration, Tuning</title><link>https://portal.hpc.hsu-hh.de/documentation/gurobi/gurobi-solver/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/gurobi/gurobi-solver/</guid><description>&lt;h2 id="solving-a-model">Solving a Model&lt;/h2>
&lt;ul>
&lt;li>Command-line commands:
&lt;ul>
&lt;li>Run: &lt;code>gurobi_cl model.mps&lt;/code>&lt;/li>
&lt;li>Write solution: &lt;code>gurobi_cl ResultFile=model.sol model.mps&lt;/code>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>References:
&lt;ul>
&lt;li>&lt;a href="https://www.gurobi.com/documentation/current/refman/solving_a_model2.html">Solving a Model&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.gurobi.com/documentation/10.0/refman/parameters.html#sec:Parameters">Parameters&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.gurobi.com/documentation/10.0/refman/resultfile.html#parameter:ResultFile">ResultFile&lt;/a>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h2 id="running-gurobi-on-hsuper">Running Gurobi on &lt;em>HSUper&lt;/em>&lt;/h2>
&lt;ul>
&lt;li>Login on &lt;a href="https://www.hsu-hh.de/hpc/en/hsuper/">HSUper&lt;/a>, e.g., via &lt;a href="https://mobaxterm.mobatek.net/">MobaXterm&lt;/a> (only on Windows), &lt;a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html">PuTTY&lt;/a> or via the &lt;em>ssh&lt;/em> command.&lt;/li>
&lt;li>Use a &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script to submit jobs on &lt;em>HSUper&lt;/em> via entering in the terminal &lt;code>sbatch&lt;/code> (followed by the name of the &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script).&lt;/li>
&lt;li>Enter &lt;code>squeue -u $USER&lt;/code> to see all your jobs in the queue (or replace &lt;em>$USER&lt;/em> by an username); &lt;em>R&lt;/em> at &lt;em>ST&lt;/em> means that your job is currently running.&lt;/li>
&lt;li>Enter &lt;code>squeue --format=&amp;quot;%.18i %.9P %.30j %.8u %.8T %.10M %.9l %.6D %R&amp;quot; --me&lt;/code> to extend the length of the output of &lt;em>squeue&lt;/em>.&lt;/li>
&lt;li>Enter &lt;code>scancel -u $USER&lt;/code> to scancel all your jobs or &lt;code>scancel&lt;/code> followed by a jobid to cancel the corresponding job.&lt;/li>
&lt;li>Enter &lt;code>sacct -S now-7days -X --user=$USER --format=&amp;quot;jobid,jobname,user,account,partition,AllocCPUS,AllocNodes,State,ConsumedEnergy,Elapsed,TimeLimit,ExitCode&amp;quot;&lt;/code> to gain information about all your jobs during the last 7 days.&lt;/li>
&lt;li>A basic &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script could look like this:&lt;/li>
&lt;/ul>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#!/bin/bash
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --job-name=name ### the name of your job&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --output=%x_%j.out ### the output file for errors etc.&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --nodes=1 ### number of nodes&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --ntasks=1 ### number of (MPI) tasks needed&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --partition=small ### partition (small, small_shared, small_fat, dev)&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --cpus-per-task=72 ### number of threads per task (OMP threads)&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#SBATCH --time=24:00:00 ### maximum wall clock limit for job execution&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>gurobi_cl model.mps
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;ul>
&lt;li>If you want to solve several problems, e.g., with different &lt;em>.mps&lt;/em> files or with varying numbers of threads (see &lt;em>How to change parameters in Gurobi command line&lt;/em>), you can add these runs in the same &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script in a new line after
&lt;code>gurobi_cl model.mps&lt;/code>
such that these problems are solved one after the other.&lt;/li>
&lt;li>If you want to start all your runs as soon as possible, then you can use individual &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> scripts and submit each of them via &lt;code>sbatch&lt;/code> (followed by the name of the corresponding &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script). Or you could use a &lt;em>bash&lt;/em> script (&lt;code>chmod +x myBash&lt;/code> makes the bash script &lt;em>myBash&lt;/em> executable, &lt;code>./myBash&lt;/code> executes it) to start the different &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> scripts. The following &lt;em>bash&lt;/em> script starts runs for 30 different problems (each problem is indentical except that a different mps file is used with j = 1, &amp;hellip;, 30 with start &lt;em>p=1&lt;/em> and end &lt;em>P=30&lt;/em>) and different numbers of threads (i.e., i = 1, 2, 4, 8, 16, 32, 64 with start &lt;em>t=1&lt;/em> and end &lt;em>T=72&lt;/em>) and writes the log to individual log files.&lt;/li>
&lt;/ul>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">#!/bin/bash
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#75715e">&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>t&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>T&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">72&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>p&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>P&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">30&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">for&lt;/span> &lt;span style="color:#f92672">((&lt;/span> j&lt;span style="color:#f92672">=&lt;/span>$p ; j&amp;lt;&lt;span style="color:#f92672">=&lt;/span>$P ; j++ &lt;span style="color:#f92672">))&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">do&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">for&lt;/span> &lt;span style="color:#f92672">((&lt;/span> i&lt;span style="color:#f92672">=&lt;/span>$t ; i&amp;lt;&lt;span style="color:#f92672">=&lt;/span>$T ; i*&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#ae81ff">2&lt;/span> &lt;span style="color:#f92672">))&lt;/span>;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">do&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> sbatch --job-name&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;threads&lt;/span>$i&lt;span style="color:#e6db74">.problem&lt;/span>$j&lt;span style="color:#e6db74">&amp;#34;&lt;/span> --export&lt;span style="color:#f92672">=&lt;/span>ALL,i&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>$i&lt;span style="color:#e6db74">&amp;#34;&lt;/span>,j&lt;span style="color:#f92672">=&lt;/span>&lt;span style="color:#e6db74">&amp;#34;&lt;/span>$j&lt;span style="color:#e6db74">&amp;#34;&lt;/span> var_param_gurobi.slurm
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#66d9ef">done&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#66d9ef">done&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;p>The &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script &lt;em>var_param_gurobi.slurm&lt;/em> is identical to the &lt;a href="https://slurm.schedmd.com/documentation.html">SLURM&lt;/a> script from above, except that the line&lt;br>
&lt;code>gurobi_cl model.mps&lt;/code>&lt;br>
is changed to&lt;br>
&lt;code>gurobi_cl Threads=$i LogFile=&amp;quot;$HOME/gurobiLog/model$j.threads$i.log&amp;quot; model$j.mps&lt;/code>.&lt;/p></description></item><item><title>Acknowledgement</title><link>https://portal.hpc.hsu-hh.de/documentation/gurobi/acknowledgement/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/gurobi/acknowledgement/</guid><description>&lt;p>Created by &lt;strong>&lt;a href="mailto:leinen@hsu-hh.de">Dr. rer. nat. Willi Leinen&lt;/a>&lt;/strong>, Helmut-Schmidt-Universität,
&lt;strong>&lt;a href="https://www.hsu-hh.de/hpc/team/">Chair for High Performance Computing&lt;/a>&lt;/strong>.&lt;br>
Last update: 02/06/2025&lt;/p></description></item><item><title>Technical Specifications</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/specifications/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/specifications/</guid><description>&lt;h2 id="compute-nodes">Compute Nodes&lt;/h2>
&lt;blockquote>
&lt;p>Compute nodes rely on remote file systems (&lt;a href="../storage">like the parallel file system BeeGFS&lt;/a>), as they do not have local storage capabilities. The local file system resides in memory (RAM).&lt;/p>&lt;/blockquote>
&lt;h4 id="regular">Regular&lt;/h4>
&lt;p>571 compute nodes each equipped with 256 GB RAM and 2 Intel Icelake sockets; each socket features a Intel(R) Xeon (R) Platinum 8360Y processor with (up to) 36 cores, yielding a total of 72 cores per node&lt;/p></description></item><item><title>Limitations</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/limitations/</link><pubDate>Tue, 15 Oct 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/limitations/</guid><description>&lt;p>If the limitations on this page are not suitable for your use case, we invite you to contact our support team at &lt;a href="mailto:cbrz-support@hsu-hh.de">cbrz-support@hsu-hh.de&lt;/a>. If you believe another limitation should be documented here, please do not hesitate to reach out to us.&lt;/p>
&lt;h2 id="job-limitations">Job Limitations&lt;/h2>
&lt;ul>
&lt;li>&lt;strong>Maximum concurrent jobs per user:&lt;/strong> Up to 1,000 jobs can be submitted by a user at any given time; completed or canceled jobs do not affect this limit.&lt;/li>
&lt;li>&lt;strong>Maximum running jobs per user:&lt;/strong> 30 concurrent jobs are allowed, but &lt;a href="../partitions">partition-specific limitations&lt;/a> can override this limit.&lt;/li>
&lt;li>&lt;strong>Slurm job capacity:&lt;/strong> Slurm has a maximum capacity to handle up to 10,000 active jobs concurrently, including array tasks that contribute to this total.&lt;/li>
&lt;/ul></description></item><item><title>Partitions</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/partitions/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/partitions/</guid><description>&lt;p>The table below presents various partition configurations along with their respective limitations. Note that &lt;a href="../limitations">additional constraints&lt;/a> (*), not listed here, also apply.
If the limitations presented here pose a problem for your use case, we invite you to contact our support team at &lt;a href="mailto:cbrz-support@hsu-hh.de">cbrz-support@hsu-hh.de&lt;/a>.&lt;/p>
&lt;table>
 &lt;thead>
 &lt;tr>
 &lt;th>Partition Name&lt;/th>
 &lt;th>Nodes per Job&lt;/th>
 &lt;th>Wall-clock Limit&lt;/th>
 &lt;th>Concurent Jobs Limit&lt;/th>
 &lt;th>Nodes&lt;/th>
 &lt;th style="text-align: left">Remarks&lt;/th>
 &lt;/tr>
 &lt;/thead>
 &lt;tbody>
 &lt;tr>
 &lt;td>&lt;code>dev&lt;/code>&lt;/td>
 &lt;td>1-2&lt;/td>
 &lt;td>1h&lt;/td>
 &lt;td>1&lt;/td>
 &lt;td>1-571&lt;/td>
 &lt;td style="text-align: left">For testing purposes only, max. two queued jobs&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>small&lt;/code>&lt;/td>
 &lt;td>1-5&lt;/td>
 &lt;td>72h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>small_shared&lt;/code>&lt;/td>
 &lt;td>1-5&lt;/td>
 &lt;td>72h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Same settings as &lt;code>small&lt;/code> but node resources are by default shared&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>small_fat&lt;/code>&lt;/td>
 &lt;td>1-5&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>572-576&lt;/td>
 &lt;td style="text-align: left">Fat memory nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>small_gpu&lt;/code>&lt;/td>
 &lt;td>1-5&lt;/td>
 &lt;td>72h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>gpu 1-5&lt;/td>
 &lt;td style="text-align: left">Up to two A100 GPUs can be allocated per node&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>small_gpu8&lt;/code>&lt;/td>
 &lt;td>1-4&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>gpu 6-9&lt;/td>
 &lt;td style="text-align: left">Up to eight L40S GPUs can be allocated per node&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>medium-short&lt;/code>&lt;/td>
 &lt;td>6-16&lt;/td>
 &lt;td>12h&lt;/td>
 &lt;td>20&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>medium-s&lt;/code>&lt;/td>
 &lt;td>6-32&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>5&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>medium-m&lt;/code>&lt;/td>
 &lt;td>33-64&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>3&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>medium-l&lt;/code>&lt;/td>
 &lt;td>65-256&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>1&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation&lt;/td>
 &lt;/tr>
 &lt;tr>
 &lt;td>&lt;code>large&lt;/code>&lt;/td>
 &lt;td>&amp;gt;256&lt;/td>
 &lt;td>24h&lt;/td>
 &lt;td>- (*)&lt;/td>
 &lt;td>3-571&lt;/td>
 &lt;td style="text-align: left">Regular nodes, exclusive node reservation &lt;strong>! available to selected users only !&lt;/strong>&lt;/td>
 &lt;/tr>
 &lt;/tbody>
&lt;/table>
&lt;p>&lt;strong>(*):&lt;/strong> HSUper has a general maximum of concurrent jobs per user, which can be found &lt;a href="../limitations">here&lt;/a>. Other limitations are specified there as well.&lt;/p></description></item><item><title>Storage &amp; Quota</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/storage/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/storage/</guid><description>&lt;p>Contact &lt;a href="../support">support&lt;/a> if you have any questions or concerns not addressed here.&lt;/p>
&lt;h2 id="beegfs">BeeGFS&lt;/h2>
&lt;p>BeeGFS is a parallel file system available on all nodes and mostly used (e.g. for the home directory). Each user has a personal quota, which limits additional files that can be written once reached.&lt;/p>
&lt;p>&lt;strong>Check your quotas:&lt;/strong> Your personal quota and group allocations (chair, research, project) are displayed at login.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>Size&lt;/strong>: Total amount of disk space allocation.&lt;/li>
&lt;li>&lt;strong>Chunk Files&lt;/strong>: Number of fixed-size chunks (512KB for home directory, else 1MB each) allocated for storing data. In BeeGFS, large files are broken down into these fixed-size chunks to optimize storage performance by enabling parallel transfers to and from servers.&lt;/li>
&lt;/ul>
&lt;h2 id="temporary-files">Temporary Files&lt;/h2>
&lt;p>When using temporary files on HSUper, be mindful of their impact:&lt;/p></description></item><item><title>Useful Environment Variables</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/printenv/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/printenv/</guid><description>&lt;h2 id="hsuper-specific-variables">HSUper Specific Variables&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>&lt;code>$HOME&lt;/code>&lt;/strong>- Path to ones home directory&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>&lt;code>$PROJECT&lt;/code>&lt;/strong>- Path to the BeeGFS project directory&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>&lt;code>$SLURM_TMPDIR&lt;/code>&lt;/strong>- Path to the temporary folder for the current slurm job. On job completion all created files will be automatically deleted. Hence, the user’s BeeGFS quota will not be affected by the temporary files that are created in this path, once the slurm job completes. To keep files, essential files should be copied during the jobs runtime (copy commands in the slurm job script).&lt;/p></description></item><item><title>Access</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/access/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/access/</guid><description>&lt;p>Please apply for HSUper access using the following &lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=149">form&lt;/a>&lt;/strong> (available on campus/VPN only, login with RZ credentials), if needed.&lt;/p>
&lt;ul>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=149">CBRZ: HSUper Access Registration&lt;/a>&lt;/strong>&lt;/li>
&lt;/ul>
&lt;h2 id="access-to-hsuper-via-web-browser">Access to HSUper via Web Browser&lt;/h2>
&lt;p>Navigate to &lt;a href="https://hsuper.hsu-hh.de">hsuper.hsu-hh.de&lt;/a> using your preferred web browser. Log in with your RZ credentials to proceed.&lt;/p>
&lt;blockquote>
&lt;p>Only users that were authorized to utilize HSUper computing resources are able to login.&lt;/p>&lt;/blockquote>
&lt;h2 id="access-to-hsuper-using-linux--windows-10--macos-10">Access to HSUper using Linux / Windows 10+ / MacOS 10+&lt;/h2>
&lt;p>Login using your RZ credentials. Open a terminal / command prompt and enter, replacing &lt;em>&lt;rz-name>&lt;/em> with your RZ name:&lt;/p></description></item><item><title>First Steps</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/first-steps/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/first-steps/</guid><description>&lt;p>To help new users get started with HSUper, we provide a range of &lt;strong>educational materials&lt;/strong> designed to support independent learning and foster essential skills for high performance computing.&lt;/p>
&lt;p>We strongly recommend completing our training units as a starting point. These structured courses are tailored to introduce key concepts and guide you step-by-step in effectively using the HSUper system.&lt;/p>
&lt;h2 id="basic-concepts">Basic Concepts&lt;/h2>
&lt;p>More than eight digital &lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/training/">trainings&lt;/a>&lt;/strong> are available. These &lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/training/">trainings&lt;/a>&lt;/strong> are the result of a reimagined HSUper Workshops series, originally offered as a six-part on-site program. Now presented as flexible, self-paced digital trainings, these workshops are designed to empower HSUper users to independently develop the competencies needed to make the most of HPC resources.&lt;/p></description></item><item><title>Available Software</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/software/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/software/</guid><description>&lt;p>HSUper has its modules hierarchically organized by compiler and MPI implementation. The command &lt;code>module avail&lt;/code> shows all modules that are available in the current environment. If you are missing a software package, it might not be available for the selected compilers or MPI implementation. &lt;code>module spider &amp;lt;modulename&amp;gt;&lt;/code> is useful to find out how a module could be loaded. More information on the module system is provided by &lt;code>module --help&lt;/code> and the &lt;strong>&lt;a href="https://lmod.readthedocs.io/en/latest/010_user.html">Lmod documentation&lt;/a>&lt;/strong>.&lt;/p></description></item><item><title>Installing Python Modules</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/python-modules/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/python-modules/</guid><description>&lt;p>Contemporary research pipelines often employ Python - either for data analysis or even for data generation (e.g., simulation) itself. On &lt;em>HSUper&lt;/em>, Python interpreters and corresponding packages can be installed via &lt;em>Spack&lt;/em> or via &lt;em>miniforge3&lt;/em>, where the latter will be most suitable for typical users. This article briefly describes how to configure &lt;em>miniforge3&lt;/em> on HSUper and provides an example installation of typical deep learning libraries to a user-defined environment.&lt;/p>
&lt;blockquote>
&lt;p>Please note that Python and &lt;em>pip&lt;/em> are already installed on each node, but they&amp;rsquo;re only available via an alias for the respective Python version, e.g., &lt;code>python3.6&lt;/code> and &lt;code>pip3.6&lt;/code>. Be aware of this distinction to avoid confusion with system-wide installations.&lt;/p></description></item><item><title>USER-SPACK</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/userspack/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/userspack/</guid><description>&lt;p>The module integrates your locally installed spack packages directly into the environment module system Lmod — if compiled with a different compiler than the default system compiler (currently &lt;a href="mailto:gcc@8.5.0">gcc@8.5.0&lt;/a>). For example &lt;code>spack install &amp;lt;package&amp;gt; %gcc@12.1.0&lt;/code> installs the &lt;em>&amp;lt; package &amp;gt;&lt;/em> using the gcc compiler in version 12.1.0 and creates a module file for you. Not mentioning any compiler (with %) result in using the system compiler and no module file creation. In these cases you rely on &amp;rsquo; &lt;code>spack load&lt;/code>.
Furthermore, all globally available software packages are made known to your local user &lt;em>spack&lt;/em> installation on the first load of the module – no need to recompile these nor make them known to your &lt;em>spack&lt;/em> installation.
Hence, you are free to choose between &lt;code>spack&lt;/code> and &lt;code>module&lt;/code> for loading and unloading installed packages.&lt;/p></description></item><item><title>Preparing Jobs &amp; Testing</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/testing/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/testing/</guid><description>&lt;p>Software should be compiled/installed on the login nodes – manually or using &lt;strong>&lt;a href="../userspack">USER-SPACK&lt;/a>&lt;/strong>.&lt;/p>
&lt;p>Container (for Apptainer/Singularity) may be prepared on your local computer (or the login node) and later uploaded to the cluster.&lt;/p>
&lt;p>Jobs running on compute nodes should only contain the execution of the already set up environment. All environment preparations (download of additional software packages and data from the Internet) should be done beforehand.&lt;/p>
&lt;p>There is a special &lt;em>dev&lt;/em> partition (see &lt;strong>&lt;a href="../partitions">Partitions&lt;/a>&lt;/strong>) meant to be used for testing purposes. Feel free to use that partition to test different job settings etc.&lt;/p></description></item><item><title>How to Submit Jobs</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/jobs/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/jobs/</guid><description>&lt;p>Exemplary &lt;em>Slurm&lt;/em> job scripts are provided further below. They can be scheduled using &lt;code>sbatch&lt;/code>, for example, with &lt;code>sbatch helloworld-omp.job&lt;/code>.
To get an overview of your queued and running jobs, you may use &lt;code>squeue --me&lt;/code>.
For more information on &lt;em>Slurm&lt;/em>, please refer to its comprehensive &lt;strong>&lt;a href="https://slurm.schedmd.com/documentation.html">documentation&lt;/a>&lt;/strong>. You can also access the manpages directly on HSUper using commands like &lt;code>man sbatch&lt;/code> or &lt;code>man squeue&lt;/code>.&lt;/p>
&lt;p>If you are new to HPC systems or Linux, consider visiting our &lt;a href="../first-steps">First Steps&lt;/a> page for a little guidance.&lt;/p></description></item><item><title>Accounting</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/accounting/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/accounting/</guid><description>&lt;h2 id="job-output">Job Output&lt;/h2>
&lt;p>At the end of each slurm job, some accounting information is appended to the output file:&lt;/p>
&lt;pre tabindex="0">&lt;code>########################################
# Job Accounting #
########################################
Name : my-job-name
User : myuser
Account : hsuper
Partition : small
QOS : normal
NNodes : 1
Nodes : node0267
Cores : 144 (72 physical)
GPUs : 0
State : COMPLETED
ExitCode : 0:0
Submit : 2024-02-29T14:28:30
Start : 2024-02-29T14:28:31
End : 2024-02-29T17:55:27
Waited : 00:00:01
Reserved walltime : 1-00:00:00
Used walltime : 03:26:56
Used CPU time : 10-07:02:27 (Efficiency: 99.48%)
% User (Computation): 99.91%
% System (I/O) : 0.09%
Mem reserved : 245000M
Max Mem used : 205.48M (node0267)
Max Disk Write : 16.36M (node0267)
Max Disk Read : 1.14M (node0267)
Energy (CPU+Mem) : 2.26kWh (0.95kg CO2, 1.17€)
&lt;/code>&lt;/pre>&lt;p>This output is generated by the &lt;a href="https://github.com/birc-aeh/slurm-utils/tree/master?tab=readme-ov-file#jobinfo">jobinfo&lt;/a> script.&lt;br>
If a 


 
 
 
 &lt;a href="https://portal.hpc.hsu-hh.de/glossary/#GPU" data-toggle="tooltip" title="Graphics Processing Unit" style="border-bottom: 1px dotted black; text-decoration: none;">GPU&lt;/a>
 

 node was used, the &lt;a href="https://docs.nvidia.com/datacenter/dcgm/latest/user-guide/feature-overview.html#job-statistics">statistics&lt;/a> from the 


 
 
 
 &lt;a href="https://portal.hpc.hsu-hh.de/glossary/#NVIDIA%20Data%20Center%20GPU%20Manager" data-toggle="tooltip" title="NVIDIA Data Center GPU Manager" style="border-bottom: 1px dotted black; text-decoration: none;">NVIDIA Data Center GPU Manager&lt;/a>
 

 are also appended.&lt;/p></description></item><item><title>Energy Measurement</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/energy/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/energy/</guid><description>&lt;h2 id="rapl-cpu-and-dram-energy">RAPL (CPU and DRAM Energy)&lt;/h2>
&lt;p>The Slurm also includes energy measurements using the 


 
 
 
 &lt;a href="https://portal.hpc.hsu-hh.de/glossary/#RAPL" data-toggle="tooltip" title="Running Average Power Limit" style="border-bottom: 1px dotted black; text-decoration: none;">RAPL&lt;/a>
 

 interface.&lt;sup id="fnref:1">&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref">1&lt;/a>&lt;/sup> The corresponding energy consumption is reported in the job output as shown on the &lt;a href="https://portal.hpc.hsu-hh.de/documentation/hsuper/accounting/">previous page&lt;/a>.&lt;/p>
&lt;h3 id="manual-usage">Manual Usage&lt;/h3>
&lt;p>To obtain the raw 


 
 
 
 &lt;a href="https://portal.hpc.hsu-hh.de/glossary/#RAPL" data-toggle="tooltip" title="Running Average Power Limit" style="border-bottom: 1px dotted black; text-decoration: none;">RAPL&lt;/a>
 

 measurements, one can utilize the linux &lt;a href="https://www.kernel.org/doc/html/next/power/powercap/powercap.html">Power Capping Framework&lt;/a> through the file system.
All relevant attributes are located under &lt;code>/sys/devices/virtual/powercap/intel-rapl/&lt;/code> with the following subdirectories mapping to individual 


 
 
 
 &lt;a href="https://portal.hpc.hsu-hh.de/glossary/#RAPL" data-toggle="tooltip" title="Running Average Power Limit" style="border-bottom: 1px dotted black; text-decoration: none;">RAPL&lt;/a>
 

 domains:&lt;/p></description></item><item><title>Support</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/support/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/support/</guid><description>&lt;p>The administration / technical support can be reached via the &lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketTemplates;PortalGroupID=47">ticket system&lt;/a>&lt;/strong> (login with RZ credentials):&lt;/p>
&lt;ul>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=149">CBRZ: HSUper Access Registration&lt;/a>&lt;/strong>&lt;/li>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=151">CBRZ: HSUper Project Access Request&lt;/a>&lt;/strong>&lt;/li>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=150">CBRZ: HSUper Support&lt;/a>&lt;/strong>&lt;/li>
&lt;/ul>
&lt;p>Alternatively, send an email to: &lt;strong>&lt;a href="mailto:cbrz-support@hsu-hh.de">cbrz-support@hsu-hh.de&lt;/a>&lt;/strong>&lt;/p></description></item><item><title>Acknowledgement</title><link>https://portal.hpc.hsu-hh.de/documentation/hsuper/acknowledgement/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/hsuper/acknowledgement/</guid><description>&lt;p>The HPC cluster HSUper has been provided by the project &lt;strong>&lt;a href="https://www.hsu-hh.de/hpccp/">hpc.bw&lt;/a>&lt;/strong>, funded by &lt;strong>&lt;a href="https://dtecbw.de">dtec.bw&lt;/a>&lt;/strong> — Digitalization and Technology Research Center of the Bundeswehr. dtec.bw is funded by the European Union – NextGenerationEU.&lt;/p>
&lt;p>See below for a suggestion of an acknowledgement statement for publications:&lt;/p>
&lt;blockquote>
&lt;p>Computational resources (HPC cluster HSUper) have been provided by the project hpc.bw, funded by dtec.bw – Digitalization and
Technology Research Center of the Bundeswehr. dtec.bw is funded by the European Union – NextGenerationEU.&lt;/p></description></item><item><title>Technical Specifications</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/technical-specifications/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/technical-specifications/</guid><description>&lt;p>The ISCC cluster consists of 13 hosts in total, with the same hardware specifications as HSUper, except for the interconnect, which is capable of 50Gb/s over Ethernet instead of InfiniBand HDR100.&lt;/p>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Regular hosts:&lt;/strong> 10 hosts each equipped with 256 GB RAM and 2 Intel Icelake sockets; each socket features a Intel(R) Xeon (R) Platinum 8360Y processor with 32 cores, yielding a total of 64 cores per host.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>GPU hosts:&lt;/strong>&lt;/p>
&lt;ul>
&lt;li>
&lt;p>2 hosts each equipped with 1 TB RAM, 2 Intel Icelake sockets, 8 NVIDIA A30 (24GB) GPUs and 2TB local scratch storage; each socket features a Intel(R) Xeon (R) Platinum 8360Y processor with 32 cores, yielding a total of 64 cores per host&lt;/p></description></item><item><title>Virtual Machines (VM)</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/virtual-machines/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/virtual-machines/</guid><description>&lt;p>The maximum number of resources a virtual machine can acquire is the same as a single host can provide.
Resources can be divided as small as a single core, 4MB of RAM, and a quarter of a single NVidia A30 GPU.&lt;/p>
&lt;p>&lt;em>In theory, this allows a GPU host to be sliced into 32 equal virtual machines using a quarter of an NVidia A30, 2 CPU cores and 32GB of RAM.&lt;/em>&lt;/p></description></item><item><title>Storage</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/storage/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/storage/</guid><description>&lt;p>Virtual Machines (VMs) generally do not have a local storage, but use storage provided by CEPH over a 50GbE network.&lt;/p>
&lt;p>Increasing or decreasing the storage of a VM is generally possible, but sometimes the time and effort does not justify the result. Therefore, it is important to make a good guess when creating the VM or requesting the resources for a VM.&lt;/p>
&lt;p>Besides, HSUper’s 1PB BeeGFS file system may be mounted using SSHFS utilizing the 50GbE network connection of the ISCC.&lt;/p></description></item><item><title>Access to ISCC Resources</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/how-to-access/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/how-to-access/</guid><description>&lt;p>The ISCC can be accessed from within the HSU network only. If you are not located at the HSU, you need to connect using the HSU VPN (use an &lt;a href="https://www.eduvpn.org]">eduVPN&lt;/a> client).&lt;/p>
&lt;p>In order to use ISCC resources, someone needs to provide you with access information for a VM running in the ISCC.&lt;/p>
&lt;p>Please apply for ISCC resources using the following &lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=167">form&lt;/a>&lt;/strong> (available on campus/VPN only, login with RZ credentials, Microsoft’s multi-factor authorisation may intercept your request).&lt;/p></description></item><item><title>Support</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/support/</link><pubDate>Thu, 22 May 2025 11:17:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/support/</guid><description>&lt;p>The administration / technical support can be reached via the &lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketTemplates;PortalGroupID=47">ticket system&lt;/a>&lt;/strong> (login with RZ credentials, Microsoft’s multi-factor authorisation may intercept your request):&lt;/p>
&lt;ul>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=167">CBRZ: ISCC Administration &amp;amp; Resources Access Registration&lt;/a>&lt;/strong>&lt;/li>
&lt;li>&lt;strong>&lt;a href="https://tickets.hsu-hh.de/kix/customer.pl?Action=CustomerTicketMessage;DefaultSet=150">CBRZ: ISCC Support&lt;/a>&lt;/strong>&lt;/li>
&lt;/ul>
&lt;p>Alternatively, send an email to: &lt;strong>&lt;a href="mailto:cbrz-support@hsu-hh.de">cbrz-support@hsu-hh.de&lt;/a>&lt;/strong>&lt;/p></description></item><item><title>Acknowledgement</title><link>https://portal.hpc.hsu-hh.de/documentation/iscc/acknowledgement/</link><pubDate>Mon, 15 Jul 2024 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/iscc/acknowledgement/</guid><description>&lt;p>The cloud solution ISCC has been provided by the project &lt;strong>&lt;a href="https://www.hsu-hh.de/hpccp/">hpc.bw&lt;/a>&lt;/strong>, funded by &lt;strong>&lt;a href="https://dtecbw.de">dtec.bw&lt;/a>&lt;/strong> — Digitalization and Technology Research Center of the Bundeswehr. dtec.bw is funded by the European Union – NextGenerationEU.&lt;/p>
&lt;p>See below for a suggestion of an acknowledgement statement for publications:&lt;/p>
&lt;blockquote>
&lt;p>Computational resources (Interactive Scientific Computing Cloud) have been provided by the project hpc.bw, funded by dtec.bw – Digitalization and
Technology Research Center of the Bundeswehr. dtec.bw is funded by the European Union – NextGenerationEU.&lt;/p></description></item><item><title>General Information</title><link>https://portal.hpc.hsu-hh.de/documentation/contributions/_general/</link><pubDate>Tue, 19 May 2026 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/contributions/_general/</guid><description>&lt;p>The HPC Portal is designed as an open and collaborative learning environment. Members of the HPC community are encouraged to actively contribute their own learning materials, documentation, tutorials, training concepts, and other educational resources. This documentation explains the technical structure of the platform, the workflow for contributing content, and the available contribution formats.&lt;/p>
&lt;h2 id="technical-foundation-of-the-hpc-portal">Technical Foundation of the HPC Portal&lt;/h2>
&lt;p>The HPC Portal is built using the static website generator Hugo.
All website content, configuration files, and documentation are maintained in a central &lt;a href="https://git.hpc.hsu-hh.de/cbrz/hpc-portal">Git repository&lt;/a> (Link only works on HSU campus or in HSU VPN).
Access to the repository is provided via self-registration in GitLab.&lt;/p></description></item><item><title>Available Contributions Formats</title><link>https://portal.hpc.hsu-hh.de/documentation/contributions/_formats/</link><pubDate>Tue, 19 May 2026 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/contributions/_formats/</guid><description>&lt;p>The HPC Portal supports several different contribution formats.&lt;/p>
&lt;h2 id="1-blog-entries">1. Blog Entries&lt;/h2>
&lt;p>Blog posts are suitable for:&lt;/p>
&lt;ul>
&lt;li>project reports,&lt;/li>
&lt;li>event summaries,&lt;/li>
&lt;li>methodological reflections,&lt;/li>
&lt;li>announcements or&lt;/li>
&lt;li>short educational articles.&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>Example:&lt;/strong> &lt;a href="https://portal.hpc.hsu-hh.de/blog/green-hpc">Green HPC&lt;/a>
(Path in Git-Repository: content/english/blog/green-hpc/index.md)&lt;/p>
&lt;h2 id="2-documentation">2. Documentation&lt;/h2>
&lt;p>Documentation pages provide structured technical or educational information, for example:&lt;/p>
&lt;ul>
&lt;li>software installation guides,&lt;/li>
&lt;li>HPC usage tutorials,&lt;/li>
&lt;li>workflow explanations or&lt;/li>
&lt;li>introductions to computational methods.&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>Example:&lt;/strong> &lt;a href="https://portal.hpc.hsu-hh.de/documentation/hsuper/energy/">Energy Measurement&lt;/a>
(Path in Git-Repository: content/english/documentation/hsuper/energy.md)&lt;/p>
&lt;h2 id="3-wiki--docs-style-trainings">3. Wiki / Docs-Style Trainings&lt;/h2>
&lt;p>This format is intended for modular self-learning content and step-by-step educational material.&lt;/p></description></item><item><title>Contribution Workflow</title><link>https://portal.hpc.hsu-hh.de/documentation/contributions/_contributionworkflow/</link><pubDate>Tue, 19 May 2026 22:10:10 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/documentation/contributions/_contributionworkflow/</guid><description>&lt;p>After editing or creating files locally, contributions must be submitted through the Git workflow.&lt;/p>
&lt;p>The general process is:&lt;/p>
&lt;ol>
&lt;li>Clone or download the repository&lt;/li>
&lt;li>Edit or create content locally&lt;/li>
&lt;li>Create a new branch&lt;/li>
&lt;li>Commit changes&lt;/li>
&lt;li>Push the branch to the repository&lt;/li>
&lt;li>Open a Merge Request&lt;/li>
&lt;li>Wait for review and approval&lt;/li>
&lt;/ol>
&lt;p>All contributions follow the four-eyes principle and changes are reviewed by authorized maintainers before being merged into the main branch.&lt;/p>
&lt;h2 id="creating-a-branch-in-vsc">Creating a Branch in VSC&lt;/h2>
&lt;p>The following workflow is recommended when using &lt;em>&lt;a href="https://code.visualstudio.com">Visual Studio Code&lt;/a>&lt;/em> with the integrated Git functionality. The general steps might differ depending on your software, but the principle of order stays the same.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-05/</link><pubDate>Mon, 01 Jun 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-05/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>At the &lt;strong>HPC Café&lt;/strong>, we work together on your HPC-related projects. We offer to solve your problems and issues interactively together, as a hackathon-style spontaneous mini-workshop! Whether it&amp;rsquo;s about scientific software, code optimization, or parallelization - you name it. Please bring your project or a specific question about &lt;em>Slurm&lt;/em>, &lt;em>Spack&lt;/em>, &lt;em>R&lt;/em>, &lt;em>ANSYS&lt;/em>, &lt;em>C++&lt;/em>, &lt;em>Matlab&lt;/em>, &lt;em>PyTorch&lt;/em> or anything else. We will either help you directly or try to connect you with other researchers facing similar challenges.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2026-05/</link><pubDate>Mon, 01 Jun 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2026-05/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-04/</link><pubDate>Wed, 01 Apr 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-04/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>At the &lt;strong>HPC Café&lt;/strong>, we work together on your HPC-related projects. We offer to solve your problems and issues interactively together, as a hackathon-style spontaneous mini-workshop! Whether it&amp;rsquo;s about scientific software, code optimization, or parallelization - you name it. Please bring your project or a specific question about &lt;em>Slurm&lt;/em>, &lt;em>Spack&lt;/em>, &lt;em>R&lt;/em>, &lt;em>ANSYS&lt;/em>, &lt;em>C++&lt;/em>, &lt;em>Matlab&lt;/em>, &lt;em>PyTorch&lt;/em> or anything else. We will either help you directly or try to connect you with other researchers facing similar challenges.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2026-04/</link><pubDate>Wed, 01 Apr 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2026-04/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-03/</link><pubDate>Sun, 01 Mar 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-03/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>At the &lt;strong>HPC Café&lt;/strong>, we work together on your HPC-related projects. We offer to solve your problems and issues interactively together, as a hackathon-style spontaneous mini-workshop! Whether it&amp;rsquo;s about scientific software, code optimization, or parallelization - you name it. Please bring your project or a specific question about &lt;em>Slurm&lt;/em>, &lt;em>Spack&lt;/em>, &lt;em>R&lt;/em>, &lt;em>ANSYS&lt;/em>, &lt;em>C++&lt;/em>, &lt;em>Matlab&lt;/em>, &lt;em>PyTorch&lt;/em> or anything else. We will either help you directly or try to connect you with other researchers facing similar challenges.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2026-03/</link><pubDate>Sun, 01 Mar 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2026-03/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-02/</link><pubDate>Sun, 01 Feb 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-02/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>At the &lt;strong>HPC Café&lt;/strong>, we work together on your HPC-related projects. We offer to solve your problems and issues interactively together, as a hackathon-style spontaneous mini-workshop! Whether it&amp;rsquo;s about scientific software, code optimization, or parallelization - you name it. Please bring your project or a specific question about &lt;em>Slurm&lt;/em>, &lt;em>Spack&lt;/em>, &lt;em>R&lt;/em>, &lt;em>ANSYS&lt;/em>, &lt;em>C++&lt;/em>, &lt;em>Matlab&lt;/em>, &lt;em>PyTorch&lt;/em> or anything else. We will either help you directly or try to connect you with other researchers facing similar challenges.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2026-02/</link><pubDate>Sun, 01 Feb 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2026-02/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-01/</link><pubDate>Thu, 01 Jan 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2026-01/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>At the &lt;strong>HPC Café&lt;/strong>, we work together on your HPC-related projects. We offer to solve your problems and issues interactively together, as a hackathon-style spontaneous mini-workshop! Whether it&amp;rsquo;s about scientific software, code optimization, or parallelization - you name it. Please bring your project or a specific question about &lt;em>Slurm&lt;/em>, &lt;em>Spack&lt;/em>, &lt;em>R&lt;/em>, &lt;em>ANSYS&lt;/em>, &lt;em>C++&lt;/em>, &lt;em>Matlab&lt;/em>, &lt;em>PyTorch&lt;/em> or anything else. We will either help you directly or try to connect you with other researchers facing similar challenges.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2026-01/</link><pubDate>Thu, 01 Jan 2026 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2026-01/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-06/</link><pubDate>Tue, 14 Oct 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-06/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-09/</link><pubDate>Wed, 03 Dec 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-09/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC@HSU – A short review of the latest HPC Workshop</title><link>https://portal.hpc.hsu-hh.de/blog/hpc-at-hsu/</link><pubDate>Thu, 27 Nov 2025 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/hpc-at-hsu/</guid><description>&lt;p>From October 16 to October 17, 2025, the HPC@HSU Workshop took place at the &lt;a href="http://www.hsu-hh.de/">Helmut-Schmidt-University / University of the Federal Armed Forces Hamburg&lt;/a> (HSU/UniBw H), organized by the &lt;a href="https://www.hsu-hh.de/hpccp/">hpc.bw project&lt;/a>. The event represents the third part of HSUper workshop series for knowledge and competence transfer in the field of HPC. While the &lt;a href="https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-1/">first two workshops&lt;/a> strongly focused on the transfer of knowledge between HPC experts within the hpc.bw project and researchers in the field of HPC, &lt;a href="https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-redesign/">this year’s workshop&lt;/a> centered on networking and exchange about similar research challenges resp. questions through peer groups. Moreover, the workshop HPC@HSU conceptually combined offerings for self-organized learning with direct support from experts for joint problem-solving within the research projects. A total of 19 participants and 9 experts took part in the workshop.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-05/</link><pubDate>Tue, 14 Oct 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-05/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-08/</link><pubDate>Tue, 14 Oct 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-08/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Workshop 4 - Advanced Slurm</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_4/</link><pubDate>Mon, 17 Nov 2025 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_4/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 4 - Advanced Slurm&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper!&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p>
&lt;h2 id="learning-goals">Learning Goals&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Job Priorities and Updates:&lt;/strong>
You will learn about what various Slurm messages on HSUper mean, what might be hindering your job from running, and how to update your job to work around the limitations set by HSUper.
You will also learn about job priorities, how to check the priorities of your job, and tips on getting your jobs running faster.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-04/</link><pubDate>Tue, 14 Oct 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-04/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-07/</link><pubDate>Tue, 14 Oct 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-07/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC Workshop @ HSU</title><link>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-3/</link><pubDate>Wed, 01 Oct 2025 09:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-3/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The dtec.bw-funded project “hpc.bw – Competence Platform for Software Efficiency and Supercomputing” focuses on providing High Performance Computing (HPC) resources such as HSUper or the ISCC at HSU and developing competences for using them. In doing so, we conceptualize and organize various learning opportunities such as e-learning via the HPC Portal or on-site workshops.&lt;/p>
&lt;p>This year, we will once again be offering a workshop to which we would like to invite you. The HPC Workshop will take place at HSU on October 16-17, 2025. October 16 will take place in a self-learning format with support from our experts if needed; October 17 will take place in small groups at HSU each with an expert on site. The program will take place on both days between 9 a.m. and 5 p.m.&lt;/p></description></item><item><title>HPC Workshop 5 - Loading and Installing Software with Spack</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_5/</link><pubDate>Tue, 14 Oct 2025 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_5/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 5 - Loading and Installing Software with Spack&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper!&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p>
&lt;h2 id="learning-goals">Learning Goals&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Spack and Modules:&lt;/strong>
You will learn the difference between Spack and module environments.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Software Installation:&lt;/strong>
You will learn how to install software packages not available yet as a module at HSUper via Spack.&lt;/p></description></item><item><title>HPC Workshop 6 - Running Graphical Applications with X-Forwarding</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_6/</link><pubDate>Tue, 14 Oct 2025 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_6/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 6 - Running Graphical Applications with X-Forwarding&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper!&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p>
&lt;h2 id="learning-goals">Learning Goals&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Run an application with a graphical user interface (GUI) on HSUper:&lt;/strong>
You will be able to launch applications that require a GUI from the terminal, when connected to HSUper.&lt;/p></description></item><item><title>HPC Workshop 7 - Best Practices for HPC</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_7/</link><pubDate>Tue, 14 Oct 2025 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_7/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 7 - Best Practices for HPC&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper!&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p>
&lt;h2 id="learning-goals">Learning Goals&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>General HPC Best Practices:&lt;/strong>
You will learn about selected topics of HPC practicalities.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>&lt;strong>Build Systems:&lt;/strong>
Use of build systems as a best practice for project building.&lt;/p></description></item><item><title>HPC Workshop 8 - Performance Engineering for Python and Deep Learning</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_8/</link><pubDate>Tue, 14 Oct 2025 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_8/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 8 - Performance Engineering for Python and Deep Learning&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper!&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p>
&lt;h2 id="learning-goals">Learning Goals&lt;/h2>
&lt;ul>
&lt;li>
&lt;p>&lt;strong>Performance Engineering - Optimization:&lt;/strong>
You will learn about Python libraries that you can use to replace traditional data structures and libraries for better performance, as well as about Just-In-Time compilation.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-03/</link><pubDate>Sun, 01 Jun 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-03/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-06/</link><pubDate>Sun, 01 Jun 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-06/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>GreenHPC</title><link>https://portal.hpc.hsu-hh.de/blog/green-hpc/</link><pubDate>Thu, 22 May 2025 00:00:00 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/green-hpc/</guid><description>&lt;p>Despite the global challenges posed by climate change and emissions reductions in various industries in recent years, the ever growing demand for computation has ensured the opposite effect in this field as the computational capacity and therefore the associated energy requirement keeps growing&lt;sup id="fnref:1">&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref">1&lt;/a>&lt;/sup>. Meanwhile, recent legislation introduced explicit responsibilities to avoid or re-use waste heat&lt;sup id="fnref:2">&lt;a href="#fn:2" class="footnote-ref" role="doc-noteref">2&lt;/a>&lt;/sup>. This amplifies the need for improving sustainability of (scientific) computing.
GreenHPC is only one part of GreenIT which comprises efforts to increase the energy efficiency across all domains of computation, from smartphones to desktops, industrial applications and the cloud.
With the &lt;a href="https://sci.greensoftware.foundation/">Software Carbon Intensity (SCI)&lt;/a> score, the aims to provide a standardized&lt;sup id="fnref:3">&lt;a href="#fn:3" class="footnote-ref" role="doc-noteref">3&lt;/a>&lt;/sup> metric to reduce carbon emissions.
The actual formula $SCI=(O+M)/R$ accounts for both, the operational emissions $O$ as well as the embodied emissions $M$, per functional unit $R$.
The operational emissions are just the product of energy consumed and region-specific carbon intensity while the embodied emissions capture the share of total emissions for the hardware components themselves.&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-02/</link><pubDate>Thu, 01 May 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-02/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-05/</link><pubDate>Thu, 01 May 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-05/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>'Data Toxicality': The hidden harms of information</title><link>https://portal.hpc.hsu-hh.de/blog/data-toxicality/</link><pubDate>Thu, 01 May 2025 00:00:00 +0200</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/data-toxicality/</guid><description>&lt;p>On February 27th, the &lt;strong>&lt;a href="https://www.hsu-hh.de/hpccp/cp-events/seminar-computation-data/">Computation &amp;amp; Data seminar series&lt;/a>&lt;/strong> welcomed &lt;strong>&lt;a href="https://www.hsu-hh.de/theevs/schreiber">Prof. Gerhard Schreiber&lt;/a>&lt;/strong> for a thought-provoking talk on &lt;strong>&amp;lsquo;Data Toxicality: Observations and Reflections from a Techno-Ethical Perspective.&lt;/strong>&amp;rsquo;&lt;sup id="fnref:1">&lt;a href="#fn:1" class="footnote-ref" role="doc-noteref">1&lt;/a>&lt;/sup> In his presentation, &lt;a href="https://www.hsu-hh.de/theevs/schreiber">Prof. Schreiber&lt;/a> introduced a compelling and originative concept - &lt;strong>data toxicality&lt;/strong> - which extends the notion of toxicity beyond its traditional biochemical roots into the digital realm.&lt;/p>
&lt;p>But what exactly does the concept of the &amp;ldquo;&lt;strong>data toxicality&lt;/strong>&amp;rdquo;, coined by &lt;a href="https://www.hsu-hh.de/theevs/schreiber">Prof. Schreiber&lt;/a> mean, and why should we be concerned about it?&lt;/p></description></item><item><title>HPC Café</title><link>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-01/</link><pubDate>Tue, 01 Apr 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-cafe-2025-01/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>What is the &lt;strong>HPC Café&lt;/strong>? The goal of this new format is &lt;em>peer-to-peer&lt;/em> learning within the community. At each session, an expert from the discipline will be present and available to answer questions. All target groups are warmly invited – both those with prior knowledge in the field of HPC or related disciplines and those who are just starting out.&lt;/p>
&lt;p>This collaborative exchange aims to discuss direct questions and application issues in the field of HPC and related disciplines, and to jointly search for solutions. Feel free to bring your questions and concerns as well as a laptop and a cup of coffee with you.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-04/</link><pubDate>Tue, 01 Apr 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-04/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-17:00&lt;/strong>, with 1 presentation per &lt;strong>hybrid session&lt;/strong> (digital and at HSU). Immediately after the seminar series, the &lt;strong>HPC Café&lt;/strong> take place.&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-03/</link><pubDate>Sat, 01 Mar 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-03/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HPC@dtec.bw - Perspectives &amp; Next Horizons</title><link>https://portal.hpc.hsu-hh.de/event/hpc-dtec.bw---perspectives--next-horizons/</link><pubDate>Sat, 01 Feb 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hpc-dtec.bw---perspectives--next-horizons/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>with the new year, we will invite once again to the wrap-up and kick-off meeting, &lt;strong>‘HPC@dtec.bw: Perspectives &amp;amp; Next Horizon’&lt;/strong>, on March 3-4, 2025 at HSU. The goal is to present and reflect on the results and activities of the first funding phase on one hand, and to present plans and research horizons for the second funding phase on the other.&lt;/p>
&lt;p> &lt;/p>
&lt;p>The first day (the kick-off) is open to the public. You are welcome to the event. If this includes individuals who are not affiliated with the universities of the German Armed Forces, we kindly request that they also register by &lt;strong>February 7, 2025&lt;/strong>. Moreover, on the first day, there will be a poster session, which we cordially invite you and HSUper and ISCC users to attend. You can find the relevant information on our &lt;strong>(website)[https://www.hsu-hh.de/hpccp/hpcdtec-bw-perspectives-and-next-horizon/]&lt;/strong>&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-02/</link><pubDate>Sat, 01 Feb 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-02/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2025-01/</link><pubDate>Wed, 01 Jan 2025 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2025-01/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Peer-based Learning in the HPC Café</title><link>https://portal.hpc.hsu-hh.de/blog/hpc-cafe/</link><pubDate>Wed, 01 Jan 2025 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/hpc-cafe/</guid><description>&lt;p>For the last two year, the &lt;strong>&lt;a href="https://www.hsu-hh.de/hpccp/cp-events/seminar-computation-data/">Computation &amp;amp; Data Seminar Series&lt;/a>&lt;/strong> has served as a space for knowledge exchange on topics related to High Performance Computing (HPC). However, participation patterns and logistical challenges have highlighted the need for a fresh approach. Starting in the second quarter of 2025, the format will undergo a transformation to create a more interactive and engaging learning environment.&lt;/p>
&lt;h3 id="the-original-concept-challenges-and-limitations">The Original Concept: Challenges and Limitations&lt;/h3>
&lt;p>The seminar series, organized as part of the HPC initiative, has traditionally followed a structured format: two invited speakers present their research on HPC-related topics, followed by a brief Q&amp;amp;A session. Meetings take place once a month and typically attract a small but engaged audience.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-12/</link><pubDate>Sun, 01 Dec 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-12/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HSUper Workshops - a Peer-to-Peer approach</title><link>https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-redesign/</link><pubDate>Sun, 01 Dec 2024 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-redesign/</guid><description>&lt;p>The &lt;strong>HSUper Workshop&lt;/strong> is undergoing a transformation. Designed to equip researchers with the skills needed to effectively utilize HPC resources, the updated format reflects a shift toward &lt;strong>flexibility, personalization, and efficiency&lt;/strong>. Instead of a traditional lecture-based approach, the workshop will now emphasize &lt;strong>self-directed learning, peer-to-peer support, and expert consultation&lt;/strong>, making it more relevant and impactful for its diverse audience.&lt;/p>
&lt;h4 id="tailored-to-different-experience-levels">Tailored to Different Experience Levels&lt;/h4>
&lt;p>High-Performance Computing (HPC) is used across disciplines, but not everyone approaches it with the same background. The reimagined HSUper Workshop recognizes this by catering to three key groups:&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-11/</link><pubDate>Fri, 01 Nov 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-11/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-10/</link><pubDate>Tue, 01 Oct 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-10/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-06/</link><pubDate>Sat, 01 Jun 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-06/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-05/</link><pubDate>Wed, 01 May 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-05/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-04/</link><pubDate>Mon, 01 Apr 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-04/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The goal of the interdisciplinary seminar series &lt;strong>Computation &amp;amp; Data&lt;/strong> at HSU is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is typically scheduled for the &lt;strong>last Wednesday every month, 16:00-18:00&lt;/strong>, with 1-2 presentations per &lt;strong>hybrid session&lt;/strong> (digital and at HSU).&lt;/p>
&lt;p>Feel free to subscribe the seminar newsletter by sending an e-mail to &lt;strong>&lt;a href="mailto:info-hpc-bw@hsu-hh.de">info-hpc-bw@hsu-hh.de&lt;/a>&lt;/strong> with the subject line &lt;em>„Subscription Seminar Computation &amp;amp; Data”&lt;/em>.&lt;/p></description></item><item><title>HSUper Workshop for Advanced User</title><link>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-2/</link><pubDate>Fri, 19 Apr 2024 09:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-2/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>We cordially invite you to the HSUper workshop for Beginners on 18.04.2024 and to the HSUper workshop for advanced users on 19.04.2024 to gain a comprehensive insight into HPC and an introduction to using the supercomputer HSUper!&lt;/p>
&lt;p>You are welcome to attend the workshops and to learn along theoretical insights as well as practical examples more about the broad world of HPC. The workshop will take place on-site at the HSU.&lt;/p></description></item><item><title>HSUper Workshop for Beginners</title><link>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-1/</link><pubDate>Thu, 18 Apr 2024 09:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/hsuper-workshop-1/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>We cordially invite you to the HSUper workshop for Beginners on 18.04.2024 and to the HSUper workshop for advanced users on 19.04.2024 to gain a comprehensive insight into HPC and an introduction to using the supercomputer HSUper!&lt;/p>
&lt;p>You are welcome to attend the workshops and to learn along theoretical insights as well as practical examples more about the broad world of HPC. The workshop will take place on-site at the HSU.&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-03/</link><pubDate>Fri, 01 Mar 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-03/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The project hpc.bw establishes the seminar series “Computation &amp;amp; Data” at HSU. The goal of this interdisciplinary seminar is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is scheduled for the last Wednesday every month, with two presentations per hybrid session.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="sebastian-brandstäter-unibw-m-sensitivity-analysis-for-biomechanical-models">Sebastian Brandstäter (UniBw M): Sensitivity Analysis for Biomechanical Models&lt;/h3>
&lt;p>Uncertainty plays a crucial role in active biomechanical systems, primarily due to their inherent high natural variability. This variability should be considered in any biomechanical modelling endeavour, but particularly when the models are used in clinical decision-making. Most notably, biomechanical models incorporate numerous parameters with imprecise values, leading to uncertainty propagation through the models. Ultimately, this results in uncertain model predictions. Global sensitivity analysis aims to analyse and quantify how much of the prediction uncertainty can be attributed to the individual model input parameters and their interactions.
The talk will introduce global sensitivity analysis methods applicable to studying complex, large-scale computational models such as finite-element models of active biomechanical systems. A focus will be placed on computational aspects, such as making the computational burden tractable with data-driven surrogate models. The practical utility of these approaches in studying the biomechanical systems will be demonstrated through examples, including a model of growth and remodelling during the formation of an abdominal aortic aneurysm, drug delivery to a tumour, and the electromechanics of gastric peristalsis.&lt;/p></description></item><item><title>Some simple Rules to save Computation Time in Python</title><link>https://portal.hpc.hsu-hh.de/blog/simple-python-optimization-rules/</link><pubDate>Fri, 01 Mar 2024 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/simple-python-optimization-rules/</guid><description>&lt;p>Let&amp;rsquo;s discuss the following python code. It is a simple piece of code one could come up to solve a minor daily task. This script has been written to conduct a simple grid search over a 4D parameter space, it compute the values and stores parameter combinations of interest. It is not wrong to write it that way and it works, a classic throw away code.
The story changes when you want to scan big parameter spaces. You will realize that your program will need a increasing time to run. What to do now? A simple solution would be to parallelize it. But! The first step before parallelization should always be a optimization of your program!&lt;/p></description></item><item><title>Seminar Series: Computation &amp; Data</title><link>https://portal.hpc.hsu-hh.de/event/computation-data-2024-02/</link><pubDate>Thu, 01 Feb 2024 16:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/event/computation-data-2024-02/</guid><description>&lt;h3 id="about-event">About Event&lt;/h3>
&lt;p>The project hpc.bw establishes the seminar series “Computation &amp;amp; Data” at HSU. The goal of this interdisciplinary seminar is to bring together researchers and foster exchange on the development of algorithms, methods and software. The seminar series is scheduled for the last Wednesday every month, with two presentations per hybrid session.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="ali-khalifa-neural-network-based-multiscale-modeling-of-deagglomeration-due-to-wall-impact-and-collisions">Ali Khalifa: Neural Network-Based Multiscale Modeling of Deagglomeration due to Wall Impact and Collisions&lt;/h3>
&lt;p>Predicting the evolution of micron-sized particle system in fluid flows is crucial for natural processes and industrial applications like pharmaceuticals. Fully-resolved simulations are costly due to scale variations. Hence, data-driven approaches offer an attractive alternative. This study enhances an Euler-Lagrange method with neural-network models for deagglomeration from collisions and wall impacts, integrated into LES-based simulations. Tested in various turbulent flows, such as funnel-duct dispersers and bend pipes, this approach provides cost-effective predictions.&lt;/p></description></item><item><title>Code Optimization</title><link>https://portal.hpc.hsu-hh.de/research/code-optimization/</link><pubDate>Mon, 12 Feb 2024 15:27:17 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/code-optimization/</guid><description>&lt;p>Code optimization is an important aspect of software development, focusing on improving the efficiency, speed, and resource utilization of computer programs. Through careful analysis and refinement, developers aim to enhance the performance of their software, resulting in faster execution times, reduced memory footprint, and improved energy efficiency.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="the-importance-of-optimization">The Importance of Optimization&lt;/h3>
&lt;p>Optimization is crucial in various domains, including scientific computing, web development, and embedded systems. In scientific computing, optimised algorithms enable researchers to analyse vast datasets, simulate complex phenomena, and solve mathematical problems more efficiently. In environments where resources are often limited, optimization is essential to maximise performance while minimizing resource usage. In web development, optimized code leads to faster loading web pages and therefore better user experience while in scientific research code optimiziation can reduce the run time of expensive simulations from days to minutes.&lt;/p></description></item><item><title>Fluid Mechanics</title><link>https://portal.hpc.hsu-hh.de/research/fluid-mechanics/</link><pubDate>Mon, 12 Feb 2024 15:27:17 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/fluid-mechanics/</guid><description>&lt;p>Fluid mechanics is a branch of physics and engineering that studies the behavior of fluids, including liquids, gases, and plasmas. It seeks to understand how fluids move, interact with each other and with solid bodies, and respond to external forces, providing insights into a wide range of natural and engineered systems.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="fundamental-principles">Fundamental Principles&lt;/h3>
&lt;p>At its core, fluid mechanics is regulated by fundamental principles, including conservation of mass, conservation of momentum, and conservation of energy. These principles are used in many mathematical models such as the Navier-Stokes equations. They provide a tool for analyzing fluid flow phenomena and predicting fluid behavior under various conditions.&lt;/p></description></item><item><title>Machine Learning</title><link>https://portal.hpc.hsu-hh.de/research/machine-learning/</link><pubDate>Mon, 12 Feb 2024 15:27:17 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/machine-learning/</guid><description>&lt;p>Machine learning (ML) focuses on the development of algorithms and statistical models that enable computers to learn from and make predictions or decisions based on data. It encompasses a diverse range of techniques and methodologies aimed at extracting meaningful patterns and insights from complex datasets.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="fundamental-principles">Fundamental Principles&lt;/h3>
&lt;p>At the heart of machine learning are fundamental principles drawn from statistics, probability theory, optimization, and computer science. These principles provide the theoretical foundation for various machine learning algorithms and approaches, including supervised learning, unsupervised learning, and reinforcement learning. By leveraging these principles, machine learning algorithms can iteratively improve their performance and adapt to new data over time.&lt;/p></description></item><item><title>Materials Science</title><link>https://portal.hpc.hsu-hh.de/research/materials-science/</link><pubDate>Mon, 12 Feb 2024 15:27:17 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/materials-science/</guid><description>&lt;p>&lt;strong>Materials science&lt;/strong> is a field of scientific study that explores the properties and behavior of various materials, such as metals, ceramics, polymers, and composites. It investigates how these materials are structured at the atomic and molecular levels and how their structure affects their mechanical, electrical, and thermal properties.&lt;/p>
&lt;p>In materials science, researchers aim to develop new materials with improved properties for specific applications, such as stronger and lighter alloys for aerospace components, more efficient semiconductors for electronics, or biocompatible materials for medical implants.&lt;/p></description></item><item><title>Mechanical Engineering</title><link>https://portal.hpc.hsu-hh.de/research/mechanical-engineering/</link><pubDate>Mon, 12 Feb 2024 15:27:17 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/mechanical-engineering/</guid><description>&lt;p>Mechanical engineering is a multidisciplinary field that focusses on the design, analysis, and manufacturing of mechanical systems and devices, ranging from automobiles and aircraft to robots and renewable energy technologies. With its roots deeply entrenched in science, mathematics, and engineering principles, mechanical engineering drives innovation and technological advancement across various disciplines, shaping the world we live in and paving the way for a sustainable future.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="designing-innovative-solutions">Designing Innovative Solutions&lt;/h3>
&lt;p>At the heart of mechanical engineering lies the creative process of designing innovative solutions to complex engineering challenges. Mechanical engineers apply principles of physics, materials science, and mathematics to conceptualize, develop, and optimize mechanical systems and components that meet specific performance criteria and requirements. Whether it is designing more fuel-efficient engines, developing advanced materials for aerospace applications, or creating next-generation medical devices, mechanical engineers play a pivotal role in transforming ideas into reality through the application of scientific principles and engineering expertise.&lt;/p></description></item><item><title>Adult Education</title><link>https://portal.hpc.hsu-hh.de/research/adult-education/</link><pubDate>Mon, 12 Feb 2024 15:27:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/research/adult-education/</guid><description>&lt;p>Adult education is a diverse and dynamic field that encompasses a wide range of learning opportunities and programs designed to meet the needs and interests of adult learners. From formal classroom-based courses to informal learning experiences, adult education plays a crucial role in supporting lifelong learning and personal development for individuals of all ages.&lt;/p>
&lt;p> &lt;/p>
&lt;h3 id="empowering-adult-learners">Empowering Adult Learners&lt;/h3>
&lt;p>Adult education aims to empower learners by providing them with the knowledge, skills, and competencies needed to succeed in various aspects of life, including their careers, personal relationships, and civic engagement. It recognizes that adults have unique learning needs and preferences, often shaped by their life experiences, responsibilities, and goals. As such, adult education programs strive to be flexible, accessible, and relevant to the diverse backgrounds and circumstances of adult learners.&lt;/p></description></item><item><title>Insights into the first HSUper workshop</title><link>https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-1/</link><pubDate>Thu, 01 Feb 2024 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/hsuperworkshop-1/</guid><description>&lt;p>With great pleasure we provide insights into the results of the questionnaire following our recent HSUper workshop on 28.09.2023. We received a total of 29 completed forms and we will use the results to expand our offerings in the HPC Portal and to improve future workshops.&lt;/p>
&lt;h4 id="scientific-disciplines">Scientific Disciplines&lt;/h4>
&lt;p>In Figure 1, you can see the distribution of scientific disciplines among the 29 participants. This reveals a broad range of disciplines, each with a different focus.
These include for example engineering with focus on structural optimization or geodesy, data science such as statistics as well as computer science, especially cloud computing and neural networks. Moreover, there were also participants from the social sciences such as political science, economics in relation to operational research as well as cognitive neuroscience.&lt;/p></description></item><item><title>Welcome to the HPC Portal</title><link>https://portal.hpc.hsu-hh.de/blog/hpc-portal/</link><pubDate>Mon, 01 Jan 2024 00:00:00 +0100</pubDate><guid>https://portal.hpc.hsu-hh.de/blog/hpc-portal/</guid><description>&lt;p>We are delighted to announce the official launch of the High Performance Computing (HPC) Portal. It is an e-learning platform designed to target to the various needs of various target groups in the field of HPC. This platform is designed to offer learning materials and training resources.&lt;/p>
&lt;h4 id="hpc-training">HPC Training:&lt;/h4>
&lt;p>The HPC Portal will be designed to support users to tailor their learning experience according to their individual needs. Whether one is a novice seeking fundamental insights or a professional delving into advanced software engineering, the portal will accommodate multiple levels of expertise. The content encompasses various formats, including cheat-sheets, selflearning assessments, Open Educational Resources (OER), videos, instruction papers, technical documentation and more.&lt;/p></description></item><item><title>HPC Workshop 1 - A short introduction to HSUper and the Linux Terminal</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_1/</link><pubDate>Sun, 01 Jan 2023 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_1/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 1 - A short introduction to HSUper and the Linux Terminal&lt;/strong> - the first step in your journey to mastering High Performance Computing (HPC) with HSUper! This training is part of a series of self-paced digital trainings designed to help you build the skills needed to effectively utilize HPC resources on HSUper at the HSU.&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p></description></item><item><title>HPC Workshop 2 - Data Transfer and System Resources</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_2/</link><pubDate>Sun, 01 Jan 2023 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_2/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 2 - Data Transfer and System Resources&lt;/strong> — your next step in mastering High Performance Computing (HPC) with HSUper! This training builds on the foundations established in &lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/training/hpc_workshop_1/">Workshop 1 - A short Introduction to HSUper and the Linux Terminal&lt;/a>&lt;/strong> and focuses on essential skills for effectively managing data and understanding system resources.&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p></description></item><item><title>HPC Workshop 3 - Module Systems and Slurm Jobs</title><link>https://portal.hpc.hsu-hh.de/training/hpc_workshop_3/</link><pubDate>Sun, 01 Jan 2023 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/hpc_workshop_3/</guid><description>&lt;p>Welcome to &lt;strong>HPC Workshop 3 - Module Systems and Slurm Jobs&lt;/strong> — an essential part of your journey toward mastering High Performance Computing (HPC) with HSUper! This workshop introduces you to two critical aspects of HPC: managing software environments with module systems and efficiently submitting and managing tasks using the Slurm workload manager.&lt;/p>
&lt;p>This training is part of the reimagined HSUper Workshops series, originally offered as a six-part on-site program and now presented as flexible, self-paced digital trainings.&lt;/p></description></item><item><title>HSUper and Gurobi</title><link>https://portal.hpc.hsu-hh.de/training/gurobi/</link><pubDate>Sun, 01 Jan 2023 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/gurobi/</guid><description>&lt;p>This training provides comprehensive guidance on obtaining, installing, and running the Gurobi software on HSUper. It covers essential steps for software installation, job submission using SLURM scripts, running the software, and parameter configuration and tuning. Hence, this course is an invaluable resource for users aiming to effectively utilize the Gurobi solver on HSUper.&lt;/p>
&lt;h2 id="requirements">Requirements&lt;/h2>
&lt;ul>
&lt;li>&lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/documentation/hsuper/access/">Access&lt;/a>&lt;/strong> to HSUper&lt;/li>
&lt;/ul>
&lt;h2 id="content">Content&lt;/h2>
&lt;h3 id="gurobi-hardware-and-performance">&lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/documentation/gurobi/hardware-performance/">Gurobi Hardware and Performance&lt;/a>&lt;/strong>&lt;/h3>
&lt;ul>
&lt;li>This guide discusses how the performance of the Gurobi solver and the influence of the hardware.&lt;/li>
&lt;/ul>
&lt;h3 id="gurobi-installation-on-hsuper">&lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/documentation/gurobi/installation-hsuper/">Gurobi Installation on HSUper&lt;/a>&lt;/strong>&lt;/h3>
&lt;ul>
&lt;li>This guide provides detailed instructions on installing the Gurobi software on HSUper, including starting a Gurobi Interactive Shell.&lt;/li>
&lt;/ul>
&lt;h3 id="gurobi-solver-running-configuration-tuning">&lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de/documentation/gurobi/gurobi-solver/">Gurobi Solver: Running, Configuration, Tuning&lt;/a>&lt;/strong>&lt;/h3>
&lt;ul>
&lt;li>This guide provides detailed instructions on running, configuring and tuning the Gurobi solver on HSUper.&lt;/li>
&lt;/ul></description></item><item><title>IBM ILOG CPLEX Optimization Studio on HSUper</title><link>https://portal.hpc.hsu-hh.de/training/cplex/</link><pubDate>Sat, 06 Jul 2019 15:27:17 +0600</pubDate><guid>https://portal.hpc.hsu-hh.de/training/cplex/</guid><description>&lt;p>This training provides comprehensive guidance on obtaining, installing, and running the IBM ILOG CPLEX Optimization Studio software on HSUper. It covers essential steps for software installation, job submission using SLURM scripts, running the software via &lt;code>oplrun&lt;/code>, &lt;code>cplex&lt;/code>, or &lt;code>cpoptimizer&lt;/code>, and parameter configuration. Additionally, the training includes detailed instructions for exporting MPS files and fine-tuning optimization settings, making it an invaluable resource for users aiming to effectively utilize IBM ILOG CPLEX Optimization Studio on HSUper.&lt;/p></description></item><item><title>Alexander Kolling</title><link>https://portal.hpc.hsu-hh.de/author/alexander-kolling/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://portal.hpc.hsu-hh.de/author/alexander-kolling/</guid><description>&lt;p>&lt;strong>&lt;a href="https://www.hsu-hh.de/wb/kolling">Alexander Kolling&lt;/a>&lt;/strong> has been employed as a research assistant at the &lt;strong>&lt;a href="https://www.hsu-hh.de/wb/en/">Chair of Continuing Education and Lifelong Learning&lt;/a>&lt;/strong>, as well as at the &lt;strong>&lt;a href="https://www.hsu-hh.de/hpc/en/">Chair of High-Performance Computing (HPC)&lt;/a>&lt;/strong> at the &lt;strong>&lt;a href="https://www.hsu-hh.de/">HSU&lt;/a>&lt;/strong>, since May 2023. Currently, he is responsible for establishing the digital &lt;strong>&lt;a href="https://portal.hpc.hsu-hh.de">HPC Portal&lt;/a>&lt;/strong> of the &lt;strong>&lt;a href="https://dtecbw.de/home">dtec.bw&lt;/a>&lt;/strong>-funded project &lt;strong>&lt;a href="https://www.hsu-hh.de/hpccp/">hpc.bw&lt;/a>&lt;/strong>, as well as for creating the platform&amp;rsquo;s content.&lt;/p>
&lt;p>Furthermore, he is currently researching as part of his PhD in the field of Transdisciplinarity and Transversal Research, employing a scientific-theoretical approach.&lt;/p></description></item></channel></rss>