Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- HPFSS
- HPE
- LUSTRE
- PFSS
- PBS
- SLURM
- v1.9
- 1.9
- build
- ubuntu
- hpcm패치
- gpfs
- java
- nvidia
- rhel
- version
- 1.10
- Singularity
- patch
- CPU
- CUDA
- Linux
- Docker
- client
- Cray
- AMD
- Source
- HPCM
- GPU
- infiniband
Archives
- Today
- Total
목록PBS (2)
HPE CRAY 자료 공유
[PBS] Tip 모음
PBS에서 사용자의 작업 제출 허용 시키기 # qmgr -c "set server flatuid=True" PBS에서 작업 기록 보관 허용# qmgr -c "set server job_history_enable=1" PBS에서 작업 기록 보관 주기 30일 예제(기본값 2주)# qmgr -c "set server job_history_duration=720:00:00"※ "HH:MM:SS" 형식으로 사용
Applications/Scheduler
2024. 5. 2. 12:08
PBS vs Slurm
1. Commands User Commands PBS Slurm Job submission qsub [script_file] sbatch [script_file] Job deletion qdel [job_id] scancel [job_id] Job status (by job) qstat [job_id] squeue [job_id] Job status (by user) qstat -u [user_name] squeue -u [user_name] Job hold qhold [job_id] scontrol hold [job_id] Job release qrls [job_id] scontrol release [job_id] Queue list qstat -Q squeue Node list pbsnodes -l ..
Applications/Scheduler
2021. 8. 6. 14:31