Change 'istate.info' to 'eig.txt', add explanations for the parameter "out_band" (open files eigs1.txt and eigs2.txt). In the 'after_all_runners" subroutine in SDFT, use after_all_runners from ESolver_KS #11797
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Test | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - tag: gnu | |
| build_args: "" | |
| name: "Build with GNU toolchain" | |
| - tag: intel | |
| build_args: "" | |
| name: "Build with Intel toolchain" | |
| - tag: gnu | |
| build_args: "-DENABLE_LIBXC=1 -DENABLE_DEEPKS=1 -DENABLE_MLKEDF=1 -DENABLE_LIBRI=1" | |
| name: "Build extra components with GNU toolchain" | |
| - tag: intel | |
| build_args: "-DENABLE_LIBXC=1 -DENABLE_DEEPKS=1 -DENABLE_MLKEDF=1 -DENABLE_LIBRI=1" | |
| name: "Build extra components with Intel toolchain" | |
| - tag: cuda | |
| build_args: "-DUSE_CUDA=1" | |
| name: "Build with CUDA support" | |
| - tag: gnu | |
| build_args: "-DENABLE_LCAO=OFF" | |
| name: "Build without LCAO" | |
| - tag: gnu | |
| build_args: "-DUSE_ELPA=0 " | |
| name: "Build without ELPA" | |
| - tag: gnu | |
| build_args: "-DENABLE_MPI=0" | |
| name: "Build without MPI" | |
| - tag: gnu | |
| build_args: "-DENABLE_MPI=0 -DENABLE_LCAO=0" | |
| name: "Build without LCAO and MPI" | |
| name: ${{ matrix.name }} | |
| container: ghcr.io/deepmodeling/abacus-${{ matrix.tag }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build | |
| run: | | |
| git config --global --add safe.directory `pwd` | |
| cmake -B build ${{ matrix.build_args }} | |
| cmake --build build -j2 |