#!/bin/bash #SBATCH --job-name=unite_production_job #SBATCH --partition=unite # Target partition queue (e.g., unite, a40) #SBATCH --output=logs_%j.out # Output log text file (%j replaces with unique Job ID) #SBATCH --error=logs_%j.err # Error tracking text file #SBATCH --nodes=1 # Number of distinct physical hardware nodes #SBATCH --ntasks=1 # Number of execution application instances #SBATCH --cpus-per-task=4 # CPU worker core threads assigned to this task #SBATCH --mem=16G # Safe RAM allocation limit request #SBATCH --time=02:00:00 # Maximum safety runtime allowance (HH:MM:SS) # 1. Clean the inherited terminal environment states module purge # 2. Execute target execution logic or launch binaries echo "Starting production workload execution on node: $(hostname)" # Run your commands here...