...
-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 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.
I have a program that is threaded. Is it possible to submit a job that will "take over" a node, or at least the 4 cores on a single chip?
...