Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

batch-job.sh 286 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  1. #!/bin/bash
  2. #SBATCH -J lkpy
  3. #SRUN -J lkpy
  4. node=$(hostname)
  5. echo "Running job on node $node" >&2
  6. # Boise State's SLURM cluster has aggresive ulimits, even with larger job requests
  7. # Reset those limits
  8. ulimit -v unlimited
  9. ulimit -u 4096
  10. ulimit -n 4096
  11. # Finally run the code
  12. exec "$@"
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...