SLURM Documentation

1. What is SLURM? Slurm is an open source, fault-tolerant, and highly scalable cluster management and job scheduling system for large and small Linux clusters. Slurm requires no kernel modifications for its operation and is relatively self-contained. If you need more information, Please Visit https://slurm.schedmd.com/overview.html 2. Basic SLURM Command sbatch Submit a batch script to SLURM 1 2 3 4 $ sbatch [YOUR_SCRIPT] # output > Submitted batch job 210 # job_id: 210 squeue...

February 28, 2022 · 3 min · Gwanghee Kim

How do I use the Chili Pepper Cluster?

Intro This documentation will go over the basics of using the Chili Pepper cluster. Please go through this documentation step-by-step. Contact the server administrator via email or use the Q&A channel in the Slack Group. Step 1 - Understanding the Cluster Structure Chili Pepper cluster has a NAS which contains user home directories and other shared files. All users and groups are consistent across all nodes. The prefix for the user directory is /mnt/nas/users/....

February 21, 2022 · 4 min · Dongook Son

Creating Your Custom Jupyter Kernel from a Virtual Environment

Creating a Python Kernel Admin Prerequisite Admin must enable conda for all users by creating a symlink. This will let users create their own virtual environment by using the conda create command. 1 ln -s /opt/conda/bin/conda /usr/local/bin/conda User Instructions Python Users can launch a terminal session with either JupyterHub or SSH connections. Launch a bash session. 1 bash Users then can create a virtual environment in the following way....

November 28, 2021 · 2 min · Dongook Son