Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

41 total results found

PBS to Slurm Migration

Reference

Quick reference for users migrating from the old PBS/Torque system to Slurm. Command Equivalents PBS/Torque Slurm Description qsub job.sh sbatch job.sh Submit a job qsub -I srun --pty bash Interactive session qstat squeue View jobs qstat -u username squeue -u ...

Troubleshooting

Reference

Common errors and solutions for job submission and cluster usage. Job Submission Errors No partition specified srun: error: Unable to allocate resources: No partition specified or system default partition Always specify a partition. Run check_my_partitions to...

Security Installations

Reference

Required security software for TAU workstations and servers. NAC — Forescout Network Access Control client required for connecting to the TAU network. ForeScoutSecureConnector_64_visible_daemon.tar.gz Installation tar -zxvf ForeScoutSecureConnector_64_visible_...

New Page

Getting Started

Useful Tools

Getting Started First Steps

External tools and resources to help with TAU HPC usage. HPC Helper Toolkit An AI-powered toolkit to help with common HPC tasks including QOS configuration, job submission, and more. HPC Helper Toolkit for TAU

Getting Started with PowerPortal

PowerPortal User Guide Overview

PowerPortal is a web interface for the TAU HPC cluster. It lets you submit batch jobs to Slurm, monitor running and completed jobs, browse output files, and launch GUI applications — all without using the command line. What you can do Submit jobs — fill out a ...

Logging in to PowerPortal

PowerPortal User Guide Overview

PowerPortal uses your TAU university credentials — the same username and password you use for TAU email and other university systems. Steps Go to https://powerportal.tau.ac.il. Enter your TAU username (e.g. jsmith) and password. Click Sign in. Your session st...

Navigating the Interface

PowerPortal User Guide Overview

After logging in you land on the Jobs page. The navigation bar at the top is present on every page. Navigation bar Item What it does Jobs View your running and completed jobs. Staff can also see all jobs on the cluster. Submit Job Open the job submission form....

The Job Submission Form

PowerPortal User Guide Submitting a Job

The submit form is the main way to run jobs on the cluster. Open it from Submit Job in the navbar. Every field maps directly to an sbatch option — PowerPortal builds the submission for you. Required fields Field What it sets Job name A label for your job. Appe...

Writing Your Job Script

PowerPortal User Guide Submitting a Job

The job script is the shell code your job runs on the compute node. Paste it into the Script / Command field on the submission form — commands only, nothing else. What PowerPortal adds automatically The submit form shows two read-only lines above the editor: #...

Job Arrays

PowerPortal User Guide Submitting a Job

A job array runs the same script multiple times in parallel, each with a different index. Use it to process many inputs with identical resource requirements — for example, running the same analysis on 100 different samples. Setting up an array Enter the array ...

MPI Jobs

PowerPortal User Guide Submitting a Job

MPI jobs run a single program across multiple processes, potentially spanning several nodes. Use the Tasks and Tasks per node fields to configure the MPI layout. Fields to set Field sbatch equivalent When to use Nodes --nodes Number of nodes to allocate. Tasks...

Viewing and Filtering Jobs

PowerPortal User Guide My Jobs

The Jobs page shows all jobs associated with your account. Open it by clicking Jobs in the navbar. Tabs My Active Jobs — jobs submitted under your username, both active and recently completed. Cluster Queue — every job currently on the cluster, visible to staf...

Job States

PowerPortal User Guide My Jobs

Every Slurm job moves through a series of states from submission to completion. The current state is shown in the State column on the Jobs page. Common states State Meaning PENDING Waiting in the queue. The job has not started yet. See below for common reasons...

Cancelling a Job

PowerPortal User Guide My Jobs

You can cancel any of your jobs that are in PENDING or RUNNING state. Cancelling a running job stops it immediately — any output written so far is kept, but the job will not complete. How to cancel Go to the Jobs page. Click the job row to open the detail pane...

Viewing Job Output and Error Files

PowerPortal User Guide My Jobs

PowerPortal lets you browse your home directory and view job output files directly in the browser — no need to SSH into the cluster. Opening the output viewer Go to the Jobs page and click a job row to open the detail panel. Click View Output or View Error. Th...

Using Base Templates

PowerPortal User Guide Job Templates

Templates save job configurations so you do not have to re-enter every field each time you submit. There are two kinds: base templates provided by HPC staff, and personal templates you create yourself. Base templates Base templates are created and maintained b...

Creating and Managing Your Templates

PowerPortal User Guide Job Templates

Personal templates are private to your account. Create them from the submission form or directly from the Templates page. Creating a template From the submission form Fill in the submission form as you normally would. Click Save as template instead of (or befo...