# Quantum Espresso

## 使用Apptainer

例：使用qe7.1版本，输入文件为当前目录下的`FeO_test.in`，申请1个GPU提交到`723090ib`队列，使用`pw.x`

```shell
#BSUB -J FeO_test
#BSUB -q 723090ib
#BSUB -gpu num=1

export OMP_NUM_THREADS="$LSB_DJOB_NUMPROC"
QE="apptainer run --nv /fs00/software/singularity-images/ngc_quantum_espresso_qe-7.1.sif"
${QE} pw.x < FeO_test.in > FeO_test.out
```