Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

-bash-3.2$ bsub -R bigmem -queue normal_public ./myprogram

Note: -bash-3.2$ is the default prompt for your bash shell on the cluster. The command is what follows it.

I see that there are some nodes with more than 32gig ram, how such as 48 and 96 gig. How do I access them in exclusive mode since I need almost all the ram?

-bash-3.2$ bsub -q normalexpress_public -x -R "mem > 40000" ./myprogram
or
-bash-3.2$ bsub -q exbatch_public -x -R "mem > 40000" ./myprogram

...