Tagged Questions

PBS stands for portable batch system, and describes a family of software products for high performance computing.

learn more… | top users | synonyms

13
votes
7answers
1k views

shared memory, MPI and queuing systems

My unix/windows C++ app is already parallelized using MPI: the job is splitted in N cpus and each chunk is executed in parallel, quite efficient, very good speed scaling, the job is done right. But ...
4
votes
2answers
297 views

Connecting laptop(s)/desktop(s) to form a MATLAB computing cluster?

I have experience running parallel jobs on a remote cluster, and parallel (parfor) jobs on a single local machine, but never tried making a cluster of my own. I have access couple of ...
3
votes
1answer
607 views

delete jobs by grepping qstat output and sending jobid to qdel?

I am using PBS job scheduler on my cluster, and I would like to delete jobs older than a certain date using qdel; alternatively it would be sufficient to be able to sort the results of qstat by date. ...
3
votes
2answers
845 views

“embarrassingly parallel” programming using python and PBS on a cluster

I have a function (neural network model) which produces figures. I wish to test several parameters, methods and different inputs (meaning hundreds of runs of the function) from python using PBS on a ...
2
votes
1answer
82 views

running programs with torque

I have a code in fortran which I compiled and then sent to run as a pbs job in a supercomputer. I want to modify the source code and compile it again while keeping the already running program. My ...
2
votes
1answer
642 views

R programming - submitting jobs on a multiple node linux cluster using PBS

I am running R on a multiple node Linux cluster. I would like to run my analysis on R using scripts or batch mode without using parallel computing software such as MPI or snow. I know this can be ...
2
votes
4answers
960 views

Test MPI on a cluster

I am learning OpenMPI on a cluster. Here is my first example. I expect the output would show response from different nodes, but they all respond from the same node node062. I just wonder why and how I ...
1
vote
0answers
22 views

Time taken for completion of PBS jobs

On a PBS system I have access to, I'm running some jobs using the -W x=NACCESSPOLICY:SINGLEJOB flag and, anecdotally, it seems that the same jobs take about 10% longer when adding this flag as ...
1
vote
1answer
35 views

is there a way to change the walltime for currently running PBS job

I underestimated the amount of time a job would take. Would it be possible to change the time limit for a job while it is running?
1
vote
1answer
21 views

List of job_state values for torque

What are the possible values for job_state in Torque? I looked in the related man pages have yet to find a complete list.
1
vote
1answer
46 views

Job execution time of PBS script (serial job)

I'm trying to figure out the execution time of a serial job that was done using Portable Batch System (PBS). Is that information in the output file (task.o*), under Ressources in the Epilogue section? ...
1
vote
3answers
103 views

how do i find a complete list of available torque pbs queues?

Q: How do I find the available PBS queues on the "typical" Torque MPI system? (asking our admin takes 24+ hours, and the system changes with constant migration) (for example, "Std8" is one possible ...
1
vote
1answer
409 views

Does a PBS batch system move multiple serial jobs across nodes?

If I need to run many serial programs "in parallel" (because the problem is simple but time consuming - I need to read in many different data sets for the same program), the solution is simple if I ...
1
vote
2answers
246 views

Ubuntu + PBS + Apache? How can I show a list of running jobs as a website?

Is there a plugin/package to display status information for a PBS queue? I am currently running an apache webserver on the login-node of my PBS cluster. I would like to display status info and have ...
1
vote
2answers
178 views

Submitting R jobs using PBS

I am submitting a job using qsub that runs parallelized R. My intention is to have R programme running on 4 different cores rather than 8 cores. Here are some of my settings in PBS file: #PBS -l ...
1
vote
2answers
182 views

matlab batch parallelization in bash

I'm trying to run a piece of code on a large computer cluster in order to analyze different parts of the data. I created 2 loops to assign the jobs to different nodes and the cpu's that the nodes ...
1
vote
3answers
827 views

how to automatically run a bash script when my qsub jobs are finished on a server?

I would like to run a script when all of the jobs that I have sent to a server are done. for example, I send ssh server "for i in config*; do qsub ./run 1 $i; done" And I get back a list of the ...
1
vote
2answers
739 views

Is there a DRMAA Java library that works with Torque/PBS?

Does anybody know a Java implementation of the DRMAA-API that is known to work with PBS/Torque cluster software? The background behind this: I would like to submit jobs to a newly set-up linux ...
1
vote
0answers
362 views

PBS (torque) fails to consider quad core processors as 4 processors

I have a Debian cluster with 2 nodes and two quad-core processors each. I use Torque and Maui as scheduler. When I try to run an MPI job with 16 processes, the scheduler is not able to run the job: ...
1
vote
1answer
308 views

PBS: Requesting only a single core per node without requesting the entire node

I've got processes that need to be farmed out over a cluster that supports PBS, however, due to limitations with the process, I can only run one process per node at a time. Each node has two ...
0
votes
1answer
28 views

Killing a Unix zipping process

I'm using the xz zipping utility on a PBS cluster; I've just realised that the time I've allowed for my zipping jobs won't be long enough, and so would like to restart them (and then, presumably, I'll ...
0
votes
0answers
12 views

How can I combine torque and html, like ncbi blast service?

I use php to submitted a job to torque (pbs), and it(torque) generate output as: "This account is currently not available." I think it reference to account which runs httpd(apache) apache is a ...
0
votes
1answer
82 views

Running parallel Python threads that calls external MPI programme submitted using PBS

I am pretty new to python and I'm unsure of what is the best way to implement a multithread/multiprocess code on a distributed cluster. I am trying to write a wrapper script using Python that calls ...
0
votes
0answers
47 views

OpenPBS graphical interface

is it there some kind of graphical interface that works on the access or main node of the server or even only on the client computer and that graphically displays info about the jobs in process, nodes ...
0
votes
1answer
30 views

Capturing performance of a cluster

I am having a cluster containing 10 nodes all of which have similar operating system(ubuntu 10.4).I want to monitor the performance of each node basically capturing the cpu ,memory etc at a given ...
0
votes
1answer
49 views

Programming through PBS

I want to schedule a program on multiple nodes how can i do so.Im new to programming so I got some hint about PBS.How can I do it with the following. Thanks in Advance
0
votes
1answer
233 views

Help with “hello world” pbsdsh

I want to test whether pbsdsh works or not in my system. I use the following programme I am using a linux server with two 64-bit quad-core Intel Xeon (24 compute nodes try.sh #!/bin/bash # Set up ...
0
votes
1answer
169 views

Where to ask PBS/Torque Configuration question?

I've noticed that several questions on SO about PBS have gone unanswered. Is there a more appropriate forum to ask these questions? For example: PBS programming? How to limit number of concurrently ...
0
votes
1answer
580 views

MPI on PBS cluster Hello World

I am using mpiexec to run a couple of hello world executables. They each run, but the number of processes is always 1 where it looks like there should be 4 processes. Does someone understand why? ...
0
votes
4answers
134 views

Is Recursive Grep Really Better?; How to Improve PBS-based Bash Script?; and other Questions

I work in a research group and we use the PBS queuing system. I'm no PBS master, but I wanted to script a search for if a job was running. To do this I first grab a string of all the jobs by using ...
0
votes
1answer
199 views

How to specify the equivalent of ppn (on PBS) in SGE queuing system?

Is there a way to specify the ppn ( or equivalent ) in SGE ? i don't want to use all cpus in one node so i will be able to have more memory per core. ( In PBS you would do -l nodes=16:ppn=2 for ...
0
votes
1answer
153 views

PBS programming

some short and probably stupid questions about PBS: 1- I submit jobs using qsub job_file is it possible to submit a (sub)job inside a job file? 2- I have the following script: qsub job_a qsub ...
0
votes
1answer
254 views

how to limit number of concurrently running PBS jobs

I have a 64-node cluster, running PBS Pro. If I submit many hundreds of jobs, I can get 64 running at once. This is great, except when all 64 jobs happen to be nearly I/O bound, and are ...