Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: HPC Computing Question

by monkey_boy (Priest)
on Jun 21, 2014 at 11:31 UTC ( [id://1090759]=note: print w/replies, xml ) Need Help??


in reply to HPC Computing Question

I think you are barking up the wrong tree. I haven't used SGE for a number of years, but in its earlier incarnations, there was no concept of shared threads/memory BETWEEN nodes. The usual way you utilize the nodes is to write code such that smaller sections of data can be calculated independently. A usuall example is a script that takes a data file, then does some calculations upon it. Then, if we have 100 data files (e.g. numbered 1.txt .. 100.txt), we can:
qsub -t 1-100 myscript.pl
An in the code
open (my $fh , "<", $ENV{SGE_TASK_ID}.".txt") or die $!; etc ...
SGE then in your case would divide each task to a node as it sees fit (dependent on how the SGE is configured). Hope this helps.


This is not a Signature...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1090759]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-19 20:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found