Cluster and High-Performance Computers: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
(Created page with "== Managing jobs == === PBS === when you need to handle a lot job numbers (like deleting, holding,...), one can use the seq command: :> qdel `seq 123 156`")
 
mNo edit summary
 
Line 1: Line 1:
== Managing jobs ==
== Managing jobs ==


Line 5: Line 6:
when you need to handle a lot job numbers (like deleting, holding,...), one can use the seq command:
when you need to handle a lot job numbers (like deleting, holding,...), one can use the seq command:
  :> qdel `seq 123 156`
  :> qdel `seq 123 156`
== Programming optimization ==
* [http://en.wikipedia.org/wiki/Program_optimization Program optimization] on wikipedia

Latest revision as of 21:32, 14 October 2011

Managing jobs

PBS

when you need to handle a lot job numbers (like deleting, holding,...), one can use the seq command:

:> qdel `seq 123 156`


Programming optimization