Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
ToAmano committed Jan 6, 2025
1 parent 1e61eb4 commit 1bc5ece
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_posts/2025/2025-01-04-slurm-stepjob.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SlurmのステップジョブはジョブAの完了をトリガーにジョブB

ここでは以下のようなスクリプトで記述されるjobAとjobBを考える.jobAでファイルを作成し,jobBでそれを読み込んで出力する単純なもの.パーティション名は各自の環境のものに変更する.大事なのは前述の通り,`job-name` を同じにすること.ここでは`JOBNAME` で固定した.

```bash
```bash:jobA.sh
#!/bin/bash
#SBATCH --job-name="JOBNAME" # ここを同じにする
#SBATCH --no-requeue
Expand All @@ -49,7 +49,7 @@ cat <<- EOF > ./test_singleton.txt
EOF
```

```bash
```bash:jobB.sh
#!/bin/bash
#SBATCH --job-name="JOBNAME" # ここを同じにする
#SBATCH --no-requeue
Expand Down

0 comments on commit 1bc5ece

Please sign in to comment.