Hoffman2:Interactive Mode: Difference between revisions

From Center for Cognitive Neuroscience
Jump to navigation Jump to search
(Created page with "Back to all things Hoffman2")
 
No edit summary
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Hoffman2|Back to all things Hoffman2]]
[[Hoffman2|Back to all things Hoffman2]]
Interactive mode allows you to start a session on a working node with specific resource. To initiate a interactive mode, use qrsh command.
To reserve 1 core, 1 GB memory for 2 hours, simply
qrsh
qrsh can take arguments with "-l" option to specify more detailed resource requests.
hdata: per-core memory size
h_rt: job running time
Examples:
To reserve 4G for 10 hours ( Note: The job length cannot be more than 24 hours without "highp")
qrsh –l h_data=4G,h_rt=10:00:00
To reserve 2 cores with 4G memory for 8 hours ( Note: Total memory reserved will be 2 x 4 = 8GB)
qrsh –l h_data=4G,h_rt=8:00:00 –pe shared 2
To reserve for jobs longer than 24 hours needs “highp” (CCN contributed nodes)
qrsh -l h_data=4G,h_rt=72:00:00,highp

Latest revision as of 00:07, 18 December 2019

Back to all things Hoffman2

Interactive mode allows you to start a session on a working node with specific resource. To initiate a interactive mode, use qrsh command.

To reserve 1 core, 1 GB memory for 2 hours, simply

qrsh

qrsh can take arguments with "-l" option to specify more detailed resource requests.

hdata: per-core memory size
h_rt: job running time


Examples:


To reserve 4G for 10 hours ( Note: The job length cannot be more than 24 hours without "highp")

qrsh –l h_data=4G,h_rt=10:00:00 

To reserve 2 cores with 4G memory for 8 hours ( Note: Total memory reserved will be 2 x 4 = 8GB)

qrsh –l h_data=4G,h_rt=8:00:00 –pe shared 2

To reserve for jobs longer than 24 hours needs “highp” (CCN contributed nodes)

qrsh -l h_data=4G,h_rt=72:00:00,highp