Unity v2026.04.09
A specialized Agent Skill designed for researchers and students using the Ohio State University (OSU) Arts and Sciences (ASC), Unity HPC cluster
npx -y skills add AmberLee2427/unity-skills --skill unity-v2026.04.09Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Help users interact with the OSU Unity HPC cluster (ASC). Use when the user mentions Unity, Slurm, sbatch, sinteractive, or needs help with HPC workflows like job submission, GPU requests, module management, and cluster debugging.
SKILL.md
3.8 KB, as published. Nobody here has run it
Unity HPC Skill
This skill provides practical guidance for using the Ohio State University (OSU) Arts and Sciences (ASC) Unity computing cluster.
Quick Start
- Login:
ssh name.#@unity.asc.ohio-state.edu - Module Help: Use
ml availormodule availto see software, andml load <name>to use it. - Interactive Jobs: Use
sinteractivefor a quick compute node session. - Batch Jobs: Use
sbatch <script.sh>to submit jobs. - Monitor Jobs: Use
squeue -u $USERto check queue status.
Workflow: Submitting a Job
- Identify resources: CPUs, memory, walltime, GPU count, and whether you need a specific GPU type.
- Check live cluster state: Prefer
sinfo/scontrolover memory or stale docs when choosing a partition or GPU type. See REFERENCE.md. - Create a script: Use a template from TEMPLATES.md or generate one using
#SBATCHdirectives. - Submit from a login node:
sbatch my_script.sh. - Monitor and inspect:
squeue -u $USER,scontrol show job <jobid>, and log files.
Environment Management (Lmod)
ml avail: List available modules.ml spider <term>: Search for modules.ml load <module>: Load a module (for exampleml mamba).ml list: See currently loaded modules.
Unity-Specific Guidance
- Never run heavy computations or package installs on login nodes unless the docs explicitly say it is safe.
- Prefer compute-node installs for GPU-dependent Python packages.
- On Unity, shared module-managed conda/mamba roots can be read-only. User-owned prefix environments are safer than relying on named envs under the shared module prefix.
- If an environment was created with
mamba create --prefix /path/to/env, activate it by full path:mamba activate /path/to/env. - If
sbatchaccepts a script and returns a job ID, the request syntax is valid. Queue time is a scheduling issue, not necessarily a configuration failure. - If a GPU job fails with CUDA OOM, that usually means the requested GPU is too small for the model or batch size. More GPUs do not help if the model is loaded onto a single card; you need a larger GPU or quantization.
GPU Job Triage
When helping with GPU jobs on Unity:
- Check whether the user needs any GPU or a specific GPU type.
- Verify the current pool live with
sinfobefore assuming hardware availability. - Prefer typed GPU requests such as
--gres=gpu:h200:1when the partition supports them. - Distinguish between:
- scheduler problems: invalid partition, invalid GRES, pending queue, account access
- runtime problems: CUDA unavailable, missing deps, OOM, incompatible drivers/libraries
- For model-loading/OCR work, consider a two-lane plan:
- large-GPU lane for the full model
- quantized lane for smaller public GPUs
Connection & Access
- ASC Network: Direct SSH access.
- Off-campus: Use ASCTech Jump Host or ASC VPN.
- OnDemand: https://ondemand.asc.ohio-state.edu/
- Unity Cluster Guide: http://go.osu.edu/unitycompute
- Support Ticket: http://go.osu.edu/unitysupportticket
- Support Email: mailto:[email protected]
Guidelines
- Estimate walltime generously but reasonably.
- Prefer exclusive partitions if your group has access and queue time matters.
- For GPU-intensive workflows, verify the hardware live before finalizing the
#SBATCHlines. - If the docs and
sinfodisagree, trustsinfofor current availability and use the docs as background context.
For detailed node specs and partition info, see REFERENCE.md. For Slurm script templates, see TEMPLATES.md.