...
My program needs access to more than 16 gig or ram, what are my options?
An lsf resource has been defined to identify those nodes with 32 gig of ram. You access this through a bsub command line option, -R, when you submit your job.
-bash-3.2$ bsub -R bigmem -queue normal_public ./myprogram
- I see that there are some nodes with more than 32gig ram, how do I access them in exclusive mode since I need almost all the ram?*
-bash-3.2$ bsub -q normal_public -x -R "mem > 40000" ./myprogram
Note: -bash-3.2$ is the default prompt for your bash shell on the cluster. The command is what follows it.
...