All user can use a local SSD as a scratch area on each SQUID computation node.
Please use the following area.
/scr/
An example of writing the result of a.out to the scratch area and then inputting it to b.out is shown below.
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash #PBS -q SQUID-S #PBS --group=[groupname] #PBS -l elapstim_req=1:00:00 #PBS -l cpunum_job=38 module load BaseCPU/2021 cd $PBS_O_WORKDIR ./a.out > /scr/output_test # output output_test from a.out on local SSD ./b.out < /scr/output_test # input output_test to b.out rm /scr/output_test # delete output_test file on local SSD |
The files under this directory will not be deleted automatically. Please delete the files by yourself after use. Please note that if you did not delete the files, they may be viewed by other users.
a capacity of local SSD will be as follows:
General-purpose CPU node: 85 GB
GPU node: 85 GB
Vector node: 670 GB