MICCoM School 2017 Ex#4 : Parallelization

We are going to explain the parallelization levels present in WEST.

4.1 Download the material

In this excercixe we will focus on the wstat.x input.

[1]:
# pseudopotentials
!wget -N -q http://www.quantum-simulation.org/potentials/sg15_oncv/upf/Si_ONCV_PBE-1.2.upf
!wget -N -q http://www.quantum-simulation.org/potentials/sg15_oncv/upf/H_ONCV_PBE-1.2.upf

# input files
!wget -N -q https://west-code.org/doc/training/silane/pw.in
!wget -N -q https://west-code.org/doc/training/silane/wstat.in

We need to read the output of a DFT calculation, therefore as first step we run the DFT calculation invoking the executable pw.x on 8 cores.

[ ]:
!mpirun -n 8 pw.x -i pw.in > pw.out

5.2 Parallelization schemes in WEST

WEST uses up to four layers of parallelism on CPU-based computers:

  • Plane-waves (FFT)

  • Bands

  • Spin channels

  • Eigenpotentials

The following command is using N CPU cores, NI images, NK pools, NB band groups, and N/(NI*NK*NB) cores per FFT:

mpirun -n N wstat.x -nimage NI -npool NK -nbgrp NB -i wstat.in > wstat.out

This is how we achieved good scaling on CPU-based supercomputers such as the BG/Q Mira at Argonne National Laboratory, where WEST makes efficient use of 512 cores per FFT and 1024 images, for a total of N = 512 \(\times\) 1024 = 524288 cores.

Details about the implementation are described in J. Chem. Theory Comput. 11, 2680 (2015).

f9fe3060c56b4a40874e0a59713315a6

On computers equipped with GPU accelerators, WEST is capable of harnessing the data parallelism provided by GPUs. Again, we achieved good scaling on GPU-accelerated supercomputers such as Summit at Oak Ridge National Laboratory, where WEST makes efficient use of over 25000 NVIDIA V100 GPUs. Details about the implementation are described in J. Chem. Theory Comput. 18, 4690-4707 (2022).

[ ]:
!export OMP_NUM_THREADS=1

!mpirun -n 2 wstat.x -nimage 1 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores2_image1.json

!mpirun -n 4 wstat.x -nimage 1 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores4_image1.json

!mpirun -n 4 wstat.x -nimage 2 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores4_image2.json

!mpirun -n 8 wstat.x -nimage 1 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores8_image1.json

!mpirun -n 8 wstat.x -nimage 2 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores8_image2.json

!mpirun -n 8 wstat.x -nimage 4 -i wstat.in > wstat.out
!mv silane.wstat.save/wstat.json wstat_cores8_image4.json
[2]:
!ls -lrt wstat_*json
-rw-r--r--  1 vwzyu  staff  22533 Oct  7 12:56 wstat_cores2_image1.json
-rw-r--r--  1 vwzyu  staff  22540 Oct  7 12:56 wstat_cores4_image1.json
-rw-r--r--  1 vwzyu  staff  22520 Oct  7 12:56 wstat_cores4_image2.json
-rw-r--r--  1 vwzyu  staff  22652 Oct  7 12:56 wstat_cores8_image1.json
-rw-r--r--  1 vwzyu  staff  22552 Oct  7 12:56 wstat_cores8_image2.json
-rw-r--r--  1 vwzyu  staff  22523 Oct  7 12:56 wstat_cores8_image4.json

Load the files.

[3]:
import json

data = {}

for name in ['cores2_image1', 'cores4_image1', 'cores4_image2', 'cores8_image1', 'cores8_image2', 'cores8_image4'] :
    # read data wstat_XX.json
    with open('wstat_'+name+'.json', 'r') as file:
        data[name] = json.load(file)

print(json.dumps(data, indent=2))
{
  "cores2_image1": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:51:41",
      "completed": true,
      "endtime": "12:52:46",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 2,
      "nimage": 1,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 2,
      "nproc": 2,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            33761,
            33761
          ],
          "min": 33761,
          "max": 33761,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.643768310546875,
      "nlpp": 1.030029296875,
      "rhor": 2.0,
      "rhog": 0.25757598876953125,
      "gshells": 0.00644683837890625,
      "dvg": 12.8753662109375,
      "dng": 12.8753662109375,
      "hr_distr": 0.30517578125,
      "vr_distr": 0.30517578125,
      "dvpsi": 0.25750732421875,
      "dpsi": 0.25750732421875
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.259693626863766,
            -1.1803706352334107,
            -1.1754646616000721,
            -1.1703890647786372,
            -0.81581140418137,
            -0.8096134443836738,
            -0.8033363595797494,
            -0.6203695974193799,
            -0.6135888984245389,
            -0.4501620102107598,
            -0.442382846424199,
            -0.4226382509078432,
            -0.41598454704123383,
            -0.4084656801232042,
            -0.39095972522104955,
            -0.3511459993465803,
            -0.22026550826380828,
            -0.21287990375861357,
            -0.20417220310517742,
            -0.16607986473939804,
            -0.15965430422453575,
            -0.15528693161112,
            -0.15232891957374775,
            -0.14384834518944134,
            -0.13654814162052234,
            -0.1250780457349413,
            -0.11535313855439146,
            -0.10455999467988582,
            -0.10039787275083,
            -0.09867611611352078,
            -0.09329835316453536,
            -0.09165538000108892,
            -0.08516038202263831,
            -0.07956449758926284,
            -0.07765228193329646,
            -0.07304280547042423,
            -0.068898660155388,
            -0.06012934498469917,
            -0.0577789781017156,
            -0.05590914112397849,
            -0.05090570129704249,
            -0.0495121782819671,
            -0.047636798166070006,
            -0.04435125178552808,
            -0.04316092737405635,
            -0.04065896457218194,
            -0.03777094083874186,
            -0.03575338869606368,
            -0.03375888413756408,
            -0.015391229729678994
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 6.401003122329712,
          "time_elap:hum": "06.4s",
          "time_iter:sec": 6.401001930236816,
          "time_iter:hum": "06.4s",
          "sternop_ncalls": 1011,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.274569218148424,
            -1.1910659006124185,
            -1.1910295666000157,
            -1.1910000955877327,
            -0.8239701073277745,
            -0.8239142452093177,
            -0.8238763026940426,
            -0.6354923005008951,
            -0.6292928315052136,
            -0.6292875972036234,
            -0.5003557486604493,
            -0.5003056711411747,
            -0.5002216675641767,
            -0.4298365395994663,
            -0.4298224861947896,
            -0.429758660788387,
            -0.23226243929369353,
            -0.23216124116822157,
            -0.231997236694804,
            -0.1828825380947965,
            -0.18267569714906998,
            -0.1822197952994498,
            -0.17780014089872262,
            -0.1766641024293771,
            -0.17661688788062369,
            -0.14556119517828284,
            -0.1452334024775472,
            -0.14483080980320315,
            -0.12069471593974587,
            -0.11907002275776311,
            -0.11870125313021612,
            -0.11805883724023235,
            -0.11575021023453251,
            -0.11513600423086205,
            -0.11427734748835247,
            -0.11347518157179555,
            -0.11003748325154585,
            -0.09206406365357976,
            -0.09142197534256799,
            -0.08968650428991841,
            -0.07825267788861517,
            -0.07556683660113608,
            -0.07370980661552447,
            -0.07139370671108101,
            -0.06941354990539816,
            -0.06807701096967507,
            -0.06267484113286938,
            -0.06200682164597115,
            -0.06071825902703151,
            -0.06011994114237695
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 15.543698072433472,
          "time_elap:hum": "15.5s",
          "time_iter:sec": 9.121490955352783,
          "time_iter:hum": "09.1s",
          "sternop_ncalls": 1724,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.2745728549409767,
            -1.1910694543845806,
            -1.1910327350901495,
            -1.1910033723129163,
            -0.8239792282600009,
            -0.8239181326043802,
            -0.8238842358108032,
            -0.6357049468823652,
            -0.6293018385142246,
            -0.6292989750501422,
            -0.5004532582210313,
            -0.5004382621936583,
            -0.500409960872192,
            -0.4298776401255343,
            -0.4298731457029751,
            -0.4298549451442063,
            -0.23236780011983763,
            -0.2323629207364967,
            -0.23234954051943146,
            -0.18321432030162893,
            -0.1831974981670673,
            -0.1831906584872251,
            -0.1783879962885928,
            -0.17748314932283799,
            -0.17748198583108948,
            -0.14591230505007158,
            -0.1459029126729329,
            -0.1459004882766571,
            -0.12254251669043081,
            -0.12010686037351838,
            -0.12010026206289395,
            -0.12008925127114572,
            -0.11633379727781663,
            -0.11632671504473088,
            -0.11527151278172475,
            -0.11526761371204902,
            -0.11522216529630103,
            -0.09403855843383137,
            -0.09402536478069963,
            -0.09398607945531469,
            -0.07990583871804162,
            -0.07985179243527941,
            -0.07973953397795465,
            -0.0746473967396954,
            -0.07299882490652759,
            -0.07294311057969105,
            -0.06561032525559315,
            -0.06553524704181675,
            -0.06526720723544795,
            -0.06304985910112168
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 60.914422035217285,
          "time_elap:hum": "01m-00.9s",
          "time_iter:sec": 10.000174045562744,
          "time_iter:hum": "10.0s",
          "sternop_ncalls": 1693,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039706,
            -1.1910694545372733,
            -1.1910327351982364,
            -1.1910033724827909,
            -0.8239792291233674,
            -0.8239181330131929,
            -0.8238842365238508,
            -0.6357049739614701,
            -0.629301840375374,
            -0.6292989761570738,
            -0.5004532957022859,
            -0.5004382854088254,
            -0.5004100201166785,
            -0.42987766639436786,
            -0.4298731650582529,
            -0.4298549798697144,
            -0.23236813977838588,
            -0.23236315122099888,
            -0.23235040241016383,
            -0.1832163834406799,
            -0.1831983277249119,
            -0.18319319990341842,
            -0.1783900744976768,
            -0.17748546280869074,
            -0.1774841168770438,
            -0.14591408574062434,
            -0.14590668287979688,
            -0.14590456834887963,
            -0.12255854725349287,
            -0.12011375544381958,
            -0.12011186643496738,
            -0.12010955616842804,
            -0.11633754673440298,
            -0.11633671084247466,
            -0.11528208364394166,
            -0.11527826276896669,
            -0.11527686438995677,
            -0.09407593257356632,
            -0.09407348168598825,
            -0.09407020648922639,
            -0.07995041569974859,
            -0.07994729180951952,
            -0.07994577204038465,
            -0.07477338637963415,
            -0.07309594805831672,
            -0.07309503695621221,
            -0.06577569429100959,
            -0.06577009478861985,
            -0.06576499769028905,
            -0.06313172884590991
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 64.77508115768433,
          "time_elap:hum": "01m-04.7s",
          "time_iter:sec": 3.7379560470581055,
          "time_iter:hum": "03.7s",
          "sternop_ncalls": 707,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 28.408599,
        "cpu:hum": "28.4s",
        "wall:sec": 65.05135607719421,
        "wall:hum": "01m-05.0s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.10895000000000002,
        "cpu:hum": "00.1s",
        "wall:sec": 0.13843083381652832,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.00318400000000002,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.004884958267211914,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.028735000000000066,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03643608093261719,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 5.659137000000005,
        "cpu:hum": "05.6s",
        "wall:sec": 6.0514445304870605,
        "wall:hum": "06.0s",
        "nocalls": 20867
      },
      "init_vloc": {
        "cpu:sec": 0.009050000000000002,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.009421825408935547,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.006651999999999991,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.006651878356933594,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.029501999999999973,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03535795211791992,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.02706599999999998,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03292202949523926,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 0.0024199999999999777,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0024199485778808594,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.014000999999999986,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01495504379272461,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.012931000000000026,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01373600959777832,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.011463999999999974,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011560916900634766,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 28.284062,
        "cpu:hum": "28.2s",
        "wall:sec": 64.89331912994385,
        "wall:hum": "01m-04.8s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.0030870000000000064,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.003144979476928711,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.058562,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.05856490135192871,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.12303400000000053,
        "cpu:hum": "00.1s",
        "wall:sec": 0.12313032150268555,
        "wall:hum": "00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 27.734023999999998,
        "cpu:hum": "27.7s",
        "wall:sec": 28.794755935668945,
        "wall:hum": "28.7s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.0043270000000035225,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.004475116729736328,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.0043119999999952086,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.004456996917724609,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 21.238758,
        "cpu:hum": "21.2s",
        "wall:sec": 22.015073537826538,
        "wall:hum": "22.0s",
        "nocalls": 20858
      },
      "alphapc": {
        "cpu:sec": 0.02212899999998541,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.023133039474487305,
        "wall:hum": "< 00.1s",
        "nocalls": 221
      },
      "wstat_restar": {
        "cpu:sec": 0.06718700000000055,
        "cpu:hum": "< 00.1s",
        "wall:sec": 35.520912170410156,
        "wall:hum": "35.5s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.06850799999997648,
        "cpu:hum": "< 00.1s",
        "wall:sec": 35.52304410934448,
        "wall:hum": "35.5s",
        "nocalls": 750
      },
      "linstern": {
        "cpu:sec": 24.958426999999986,
        "cpu:hum": "24.9s",
        "wall:sec": 25.912009477615356,
        "wall:hum": "25.9s",
        "nocalls": 171
      },
      "stern": {
        "cpu:sec": 23.38677299999996,
        "cpu:hum": "23.3s",
        "wall:sec": 24.247909545898438,
        "wall:hum": "24.2s",
        "nocalls": 5135
      },
      "h_psi": {
        "cpu:sec": 22.899061999999866,
        "cpu:hum": "22.8s",
        "wall:sec": 23.733038663864136,
        "wall:hum": "23.7s",
        "nocalls": 5135
      },
      "h_psi:pot": {
        "cpu:sec": 22.77241500000001,
        "cpu:hum": "22.7s",
        "wall:sec": 23.598750114440918,
        "wall:hum": "23.5s",
        "nocalls": 5135
      },
      "vloc_psi": {
        "cpu:sec": 21.933960000000088,
        "cpu:hum": "21.9s",
        "wall:sec": 22.71322512626648,
        "wall:hum": "22.7s",
        "nocalls": 5135
      },
      "h_psi:calbec": {
        "cpu:sec": 0.40282499999994315,
        "cpu:hum": "00.4s",
        "wall:sec": 0.42641329765319824,
        "wall:hum": "00.4s",
        "nocalls": 5135
      },
      "calbec": {
        "cpu:sec": 0.39103600000006367,
        "cpu:hum": "00.3s",
        "wall:sec": 0.41650819778442383,
        "wall:hum": "00.4s",
        "nocalls": 5135
      },
      "add_vuspsi": {
        "cpu:sec": 0.41222199999995723,
        "cpu:hum": "00.4s",
        "wall:sec": 0.4394557476043701,
        "wall:hum": "00.4s",
        "nocalls": 5135
      },
      "alphapv": {
        "cpu:sec": 0.3792379999999902,
        "cpu:hum": "00.3s",
        "wall:sec": 0.40317320823669434,
        "wall:hum": "00.4s",
        "nocalls": 5135
      },
      "build_hr": {
        "cpu:sec": 0.06639300000000148,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.06906485557556152,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.009206999999999965,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.009239912033081055,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.0008479999999977395,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0011370182037353516,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.1481919999999981,
        "cpu:hum": "00.1s",
        "wall:sec": 0.16312003135681152,
        "wall:hum": "00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 1.0000000010279564e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 9.5367431640625e-07,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.04103600000000185,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.041023969650268555,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.007093000000001126,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01580500602722168,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  },
  "cores4_image1": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:53:11",
      "completed": true,
      "endtime": "12:53:37",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 4,
      "nimage": 1,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 4,
      "nproc": 4,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0,
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            16881,
            16880,
            16881,
            16880
          ],
          "min": 16880,
          "max": 16881,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.322265625,
      "nlpp": 0.515625,
      "rhor": 1.0,
      "rhog": 0.12879180908203125,
      "gshells": 0.00637054443359375,
      "dvg": 6.4453125,
      "dng": 6.4453125,
      "hr_distr": 0.30517578125,
      "vr_distr": 0.30517578125,
      "dvpsi": 0.12890625,
      "dpsi": 0.12890625
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.259693626863767,
            -1.180370635233411,
            -1.1754646616000703,
            -1.1703890647786377,
            -0.8158114041813702,
            -0.8096134443836733,
            -0.8033363595797498,
            -0.6203695974193801,
            -0.6135888984245388,
            -0.4501620102107603,
            -0.4423828464241999,
            -0.4226382509078426,
            -0.4159845470412338,
            -0.40846568012320383,
            -0.39095972522104916,
            -0.3511459993465781,
            -0.22026550826380792,
            -0.21287990375861324,
            -0.20417220310517734,
            -0.16607986473939795,
            -0.1596543042245357,
            -0.15528693161112017,
            -0.15232891957374742,
            -0.14384834518944117,
            -0.1365481416205221,
            -0.1250780457349413,
            -0.11535313855439146,
            -0.10455999467988547,
            -0.10039787275083006,
            -0.09867611611352071,
            -0.0932983531645354,
            -0.09165538000108896,
            -0.08516038202263822,
            -0.07956449758926296,
            -0.07765228193329662,
            -0.07304280547042429,
            -0.068898660155388,
            -0.06012934498469912,
            -0.05777897810171564,
            -0.05590914112397855,
            -0.050905701297041916,
            -0.04951217828196726,
            -0.04763679816606999,
            -0.044351251785528394,
            -0.043160927374056544,
            -0.04065896457218211,
            -0.037770940838741794,
            -0.035753388696063766,
            -0.03375888413756414,
            -0.015391229729679767
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 3.5104880332946777,
          "time_elap:hum": "03.5s",
          "time_iter:sec": 3.5104870796203613,
          "time_iter:hum": "03.5s",
          "sternop_ncalls": 1011,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.2745692181484247,
            -1.1910659006124162,
            -1.1910295666000166,
            -1.1910000955877325,
            -0.8239701073277748,
            -0.823914245209318,
            -0.8238763026940423,
            -0.6354923005008957,
            -0.629292831505213,
            -0.6292875972036235,
            -0.5003557486604497,
            -0.500305671141175,
            -0.5002216675641773,
            -0.4298365395994664,
            -0.42982248619478985,
            -0.42975866078838665,
            -0.23226243929369347,
            -0.23216124116822165,
            -0.23199723669480432,
            -0.1828825380947965,
            -0.18267569714906978,
            -0.1822197952994497,
            -0.17780014089872223,
            -0.1766641024293772,
            -0.17661688788062355,
            -0.14556119517828273,
            -0.14523340247754699,
            -0.14483080980320315,
            -0.12069471593974584,
            -0.11907002275776313,
            -0.11870125313021611,
            -0.11805883724023217,
            -0.11575021023453255,
            -0.11513600423086204,
            -0.11427734748835244,
            -0.11347518157179554,
            -0.11003748325154564,
            -0.09206406365357983,
            -0.0914219753425681,
            -0.08968650428991842,
            -0.07825267788861513,
            -0.07556683660113622,
            -0.0737098066155244,
            -0.07139370671108086,
            -0.0694135499053981,
            -0.06807701096967521,
            -0.06267484113286934,
            -0.0620068216459712,
            -0.060718259027031464,
            -0.06011994114237693
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 8.296092987060547,
          "time_elap:hum": "08.2s",
          "time_iter:sec": 4.76230001449585,
          "time_iter:hum": "04.7s",
          "sternop_ncalls": 1724,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.2745728549409794,
            -1.1910694543845797,
            -1.191032735090151,
            -1.1910033723129148,
            -0.8239792282600007,
            -0.8239181326043808,
            -0.8238842358108035,
            -0.6357049468823656,
            -0.6293018385142238,
            -0.6292989750501418,
            -0.5004532582210303,
            -0.5004382621936592,
            -0.5004099608721922,
            -0.42987764012553464,
            -0.42987314570297536,
            -0.4298549451442061,
            -0.23236780011983765,
            -0.23236292073649664,
            -0.23234954051943116,
            -0.1832143203016286,
            -0.18319749816706732,
            -0.18319065848722485,
            -0.1783879962885923,
            -0.17748314932283826,
            -0.17748198583108946,
            -0.1459123050500714,
            -0.14590291267293282,
            -0.14590048827665722,
            -0.1225425166904309,
            -0.12010686037351825,
            -0.12010026206289379,
            -0.12008925127114572,
            -0.1163337972778168,
            -0.1163267150447309,
            -0.11527151278172476,
            -0.11526761371204902,
            -0.1152221652963009,
            -0.09403855843383127,
            -0.09402536478069974,
            -0.09398607945531486,
            -0.07990583871804152,
            -0.07985179243527998,
            -0.07973953397795502,
            -0.07464739673969546,
            -0.07299882490652768,
            -0.07294311057969093,
            -0.06561032525559372,
            -0.06553524704181686,
            -0.06526720723544811,
            -0.06304985910112174
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 24.117559909820557,
          "time_elap:hum": "24.1s",
          "time_iter:sec": 5.277726888656616,
          "time_iter:hum": "05.2s",
          "sternop_ncalls": 1693,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039708,
            -1.191069454537272,
            -1.1910327351982377,
            -1.1910033724827906,
            -0.8239792291233667,
            -0.8239181330131936,
            -0.823884236523851,
            -0.6357049739614701,
            -0.6293018403753733,
            -0.6292989761570734,
            -0.5004532957022857,
            -0.5004382854088266,
            -0.5004100201166806,
            -0.42987766639436803,
            -0.42987316505825324,
            -0.42985497986971327,
            -0.23236813977838558,
            -0.2323631512209984,
            -0.23235040241016403,
            -0.18321638344067975,
            -0.1831983277249118,
            -0.18319319990341865,
            -0.17839007449767694,
            -0.17748546280869057,
            -0.1774841168770436,
            -0.14591408574062434,
            -0.14590668287979683,
            -0.14590456834887952,
            -0.12255854725349294,
            -0.12011375544381936,
            -0.12011186643496763,
            -0.12010955616842799,
            -0.11633754673440293,
            -0.11633671084247421,
            -0.1152820836439416,
            -0.11527826276896691,
            -0.11527686438995673,
            -0.09407593257356628,
            -0.0940734816859882,
            -0.09407020648922629,
            -0.07995041569974852,
            -0.07994729180951961,
            -0.07994577204038458,
            -0.07477338637963421,
            -0.0730959480583167,
            -0.07309503695621213,
            -0.0657756942910097,
            -0.06577009478861993,
            -0.06576499769028907,
            -0.06313172884590994
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 26.434272050857544,
          "time_elap:hum": "26.4s",
          "time_iter:sec": 2.1594290733337402,
          "time_iter:hum": "02.1s",
          "sternop_ncalls": 707,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 15.668203,
        "cpu:hum": "15.6s",
        "wall:sec": 26.63409113883972,
        "wall:hum": "26.6s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.08705799999999997,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.11014389991760254,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.002685999999999966,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.005130290985107422,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.01849099999999998,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.024294376373291016,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 3.235440000000038,
        "cpu:hum": "03.2s",
        "wall:sec": 3.2708442211151123,
        "wall:hum": "03.2s",
        "nocalls": 20867
      },
      "init_vloc": {
        "cpu:sec": 0.009928999999999966,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.010274648666381836,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.0046680000000000055,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.004669904708862305,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.014513000000000026,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.021615028381347656,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.014429999999999998,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.020232200622558594,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 8.00000000000245e-05,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.001363992691040039,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.009865999999999986,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.012998819351196289,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.008914000000000033,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011677026748657227,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.008913000000000004,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.009022951126098633,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 15.569647999999999,
        "cpu:hum": "15.5s",
        "wall:sec": 26.506276845932007,
        "wall:hum": "26.5s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.0030120000000000147,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0032410621643066406,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.054403000000000035,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.055474042892456055,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.07806200000000274,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.07834696769714355,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 15.176052999999998,
        "cpu:hum": "15.1s",
        "wall:sec": 15.32684874534607,
        "wall:hum": "15.3s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.0019770000000001176,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.002045869827270508,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.001961000000001434,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.002033233642578125,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 11.595709000000001,
        "cpu:hum": "11.5s",
        "wall:sec": 11.706935167312622,
        "wall:hum": "11.7s",
        "nocalls": 20858
      },
      "alphapc": {
        "cpu:sec": 0.01570900000000819,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.015905141830444336,
        "wall:hum": "< 00.1s",
        "nocalls": 221
      },
      "wstat_restar": {
        "cpu:sec": 0.09294400000000103,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.813722848892212,
        "wall:hum": "10.8s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.09106000000000591,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.807817935943604,
        "wall:hum": "10.8s",
        "nocalls": 750
      },
      "linstern": {
        "cpu:sec": 13.663326999999994,
        "cpu:hum": "13.6s",
        "wall:sec": 13.797707080841064,
        "wall:hum": "13.7s",
        "nocalls": 171
      },
      "stern": {
        "cpu:sec": 12.772329000000047,
        "cpu:hum": "12.7s",
        "wall:sec": 12.893377542495728,
        "wall:hum": "12.8s",
        "nocalls": 5135
      },
      "h_psi": {
        "cpu:sec": 12.48103300000003,
        "cpu:hum": "12.4s",
        "wall:sec": 12.600986003875732,
        "wall:hum": "12.6s",
        "nocalls": 5135
      },
      "h_psi:pot": {
        "cpu:sec": 12.409183999999938,
        "cpu:hum": "12.4s",
        "wall:sec": 12.526741743087769,
        "wall:hum": "12.5s",
        "nocalls": 5135
      },
      "vloc_psi": {
        "cpu:sec": 11.871247999999955,
        "cpu:hum": "11.8s",
        "wall:sec": 11.985895156860352,
        "wall:hum": "11.9s",
        "nocalls": 5135
      },
      "h_psi:calbec": {
        "cpu:sec": 0.27885000000000026,
        "cpu:hum": "00.2s",
        "wall:sec": 0.2815890312194824,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "calbec": {
        "cpu:sec": 0.26658200000006893,
        "cpu:hum": "00.2s",
        "wall:sec": 0.27150535583496094,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "add_vuspsi": {
        "cpu:sec": 0.23508100000007914,
        "cpu:hum": "00.2s",
        "wall:sec": 0.23943829536437988,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "alphapv": {
        "cpu:sec": 0.22619799999997348,
        "cpu:hum": "00.2s",
        "wall:sec": 0.22996115684509277,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "build_hr": {
        "cpu:sec": 0.03618299999999941,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.04017949104309082,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.010265000000000413,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011226177215576172,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.0004650000000019361,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0009350776672363281,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.06843099999999858,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.07791304588317871,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 2.9999999995311555e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 1.9073486328125e-06,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.02478100000000083,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.024783849716186523,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.0062819999999987886,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.010355949401855469,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  },
  "cores4_image2": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:53:45",
      "completed": true,
      "endtime": "12:54:10",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 4,
      "nimage": 2,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 2,
      "nproc": 4,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            33761,
            33761
          ],
          "min": 33761,
          "max": 33761,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.643768310546875,
      "nlpp": 1.030029296875,
      "rhor": 2.0,
      "rhog": 0.25757598876953125,
      "gshells": 0.00644683837890625,
      "dvg": 6.43768310546875,
      "dng": 6.43768310546875,
      "hr_distr": 0.152587890625,
      "vr_distr": 0.152587890625,
      "dvpsi": 0.25750732421875,
      "dpsi": 0.25750732421875
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.259693626863766,
            -1.1803706352334107,
            -1.1754646616000721,
            -1.1703890647786372,
            -0.81581140418137,
            -0.8096134443836738,
            -0.8033363595797494,
            -0.6203695974193799,
            -0.6135888984245389,
            -0.4501620102107598,
            -0.442382846424199,
            -0.4226382509078432,
            -0.41598454704123383,
            -0.4084656801232042,
            -0.39095972522104955,
            -0.3511459993465803,
            -0.22026550826380828,
            -0.21287990375861357,
            -0.20417220310517742,
            -0.16607986473939804,
            -0.15965430422453575,
            -0.15528693161112,
            -0.15232891957374775,
            -0.14384834518944134,
            -0.13654814162052234,
            -0.1250780457349413,
            -0.11535313855439146,
            -0.10455999467988582,
            -0.10039787275083,
            -0.09867611611352078,
            -0.09329835316453536,
            -0.09165538000108892,
            -0.08516038202263831,
            -0.07956449758926284,
            -0.07765228193329646,
            -0.07304280547042423,
            -0.068898660155388,
            -0.06012934498469917,
            -0.0577789781017156,
            -0.05590914112397849,
            -0.05090570129704249,
            -0.0495121782819671,
            -0.047636798166070006,
            -0.04435125178552808,
            -0.04316092737405635,
            -0.04065896457218194,
            -0.03777094083874186,
            -0.03575338869606368,
            -0.03375888413756408,
            -0.015391229729678994
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 3.270024061203003,
          "time_elap:hum": "03.2s",
          "time_iter:sec": 3.270024061203003,
          "time_iter:hum": "03.2s",
          "sternop_ncalls": 505,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.2745692181484238,
            -1.1910659006124187,
            -1.1910295666000146,
            -1.1910000955877331,
            -0.8239701073277751,
            -0.8239142452093172,
            -0.8238763026940424,
            -0.6354923005008957,
            -0.6292928315052128,
            -0.6292875972036234,
            -0.5003557486604496,
            -0.5003056711411752,
            -0.500221667564177,
            -0.4298365395994663,
            -0.4298224861947897,
            -0.42975866078838687,
            -0.23226243929369333,
            -0.2321612411682214,
            -0.23199723669480393,
            -0.18288253809479646,
            -0.1826756971490699,
            -0.1822197952994497,
            -0.1778001408987227,
            -0.17666410242937702,
            -0.1766168878806238,
            -0.14556119517828273,
            -0.14523340247754682,
            -0.14483080980320331,
            -0.12069471593974569,
            -0.11907002275776316,
            -0.11870125313021611,
            -0.11805883724023215,
            -0.11575021023453241,
            -0.11513600423086212,
            -0.11427734748835243,
            -0.11347518157179551,
            -0.11003748325154578,
            -0.09206406365357983,
            -0.091421975342568,
            -0.0896865042899184,
            -0.0782526778886152,
            -0.07556683660113603,
            -0.07370980661552443,
            -0.07139370671108096,
            -0.06941354990539816,
            -0.06807701096967506,
            -0.06267484113286936,
            -0.06200682164597115,
            -0.060718259027031436,
            -0.06011994114237692
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 7.745743989944458,
          "time_elap:hum": "07.7s",
          "time_iter:sec": 4.4616100788116455,
          "time_iter:hum": "04.4s",
          "sternop_ncalls": 860,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.2745728549409765,
            -1.1910694543845806,
            -1.1910327350901508,
            -1.1910033723129172,
            -0.8239792282600014,
            -0.8239181326043797,
            -0.8238842358108031,
            -0.6357049468823659,
            -0.6293018385142243,
            -0.6292989750501422,
            -0.5004532582210315,
            -0.5004382621936583,
            -0.5004099608721911,
            -0.42987764012553437,
            -0.429873145702975,
            -0.4298549451442067,
            -0.23236780011983793,
            -0.2323629207364968,
            -0.23234954051943094,
            -0.18321432030162882,
            -0.18319749816706754,
            -0.183190658487225,
            -0.1783879962885927,
            -0.17748314932283807,
            -0.1774819858310894,
            -0.14591230505007163,
            -0.14590291267293276,
            -0.145900488276657,
            -0.12254251669043095,
            -0.12010686037351831,
            -0.12010026206289377,
            -0.12008925127114574,
            -0.11633379727781674,
            -0.11632671504473104,
            -0.11527151278172482,
            -0.11526761371204904,
            -0.11522216529630093,
            -0.09403855843383137,
            -0.09402536478069971,
            -0.09398607945531459,
            -0.07990583871804156,
            -0.07985179243527993,
            -0.07973953397795483,
            -0.07464739673969542,
            -0.07299882490652766,
            -0.07294311057969116,
            -0.0656103252555933,
            -0.06553524704181676,
            -0.06526720723544818,
            -0.0630498591011217
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 22.78267192840576,
          "time_elap:hum": "22.7s",
          "time_iter:sec": 4.919126033782959,
          "time_iter:hum": "04.9s",
          "sternop_ncalls": 848,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039708,
            -1.1910694545372733,
            -1.1910327351982368,
            -1.1910033724827906,
            -0.8239792291233675,
            -0.8239181330131933,
            -0.8238842365238508,
            -0.6357049739614697,
            -0.6293018403753733,
            -0.6292989761570736,
            -0.5004532957022851,
            -0.5004382854088253,
            -0.5004100201166789,
            -0.42987766639436764,
            -0.4298731650582525,
            -0.42985497986971444,
            -0.2323681397783857,
            -0.23236315122099857,
            -0.2323504024101637,
            -0.18321638344067978,
            -0.18319832772491207,
            -0.18319319990341862,
            -0.17839007449767702,
            -0.1774854628086907,
            -0.1774841168770438,
            -0.14591408574062437,
            -0.14590668287979705,
            -0.1459045683488796,
            -0.1225585472534929,
            -0.12011375544381951,
            -0.1201118664349677,
            -0.1201095561684281,
            -0.11633754673440294,
            -0.11633671084247449,
            -0.11528208364394163,
            -0.11527826276896698,
            -0.11527686438995667,
            -0.09407593257356629,
            -0.09407348168598823,
            -0.09407020648922627,
            -0.07995041569974844,
            -0.07994729180951948,
            -0.07994577204038453,
            -0.07477338637963417,
            -0.07309594805831665,
            -0.07309503695621213,
            -0.06577569429100956,
            -0.06577009478861982,
            -0.06576499769028905,
            -0.06313172884590969
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 25.1390118598938,
          "time_elap:hum": "25.1s",
          "time_iter:sec": 2.278592824935913,
          "time_iter:hum": "02.2s",
          "sternop_ncalls": 371,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 14.704028,
        "cpu:hum": "14.7s",
        "wall:sec": 25.37000799179077,
        "wall:hum": "25.3s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.107427,
        "cpu:hum": "00.1s",
        "wall:sec": 0.13681292533874512,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.0038140000000000396,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0054209232330322266,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.03007500000000002,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.034218788146972656,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 2.5313310000000158,
        "cpu:hum": "02.5s",
        "wall:sec": 2.636836051940918,
        "wall:hum": "02.6s",
        "nocalls": 10503
      },
      "init_vloc": {
        "cpu:sec": 0.009770000000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.009769201278686523,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.0068290000000000295,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.006952047348022461,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.025229,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.035672903060913086,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.02324100000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03336596488952637,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 0.0019779999999999798,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.002290964126586914,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.014573000000000003,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.016227006912231445,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.013979999999999992,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.014901876449584961,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.011834999999999984,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011960029602050781,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 14.578969,
        "cpu:hum": "14.5s",
        "wall:sec": 25.21234893798828,
        "wall:hum": "25.2s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.003385000000000027,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0033850669860839844,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.02774099999999996,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.028602123260498047,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.08451499999999967,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.08648109436035156,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 14.227335000000002,
        "cpu:hum": "14.2s",
        "wall:sec": 14.557623863220215,
        "wall:hum": "14.5s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.004825999999999553,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.00493931770324707,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.004810000000000869,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.004925727844238281,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 10.770096999999986,
        "cpu:hum": "10.7s",
        "wall:sec": 11.001033782958984,
        "wall:hum": "11.0s",
        "nocalls": 10494
      },
      "alphapc": {
        "cpu:sec": 0.011467000000003225,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011926651000976562,
        "wall:hum": "< 00.1s",
        "nocalls": 111
      },
      "wstat_restar": {
        "cpu:sec": 0.041530999999999096,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.251865148544312,
        "wall:hum": "10.2s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.037493999999998806,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.242467880249023,
        "wall:hum": "10.2s",
        "nocalls": 375
      },
      "linstern": {
        "cpu:sec": 12.720869999999994,
        "cpu:hum": "12.7s",
        "wall:sec": 13.011817216873169,
        "wall:hum": "13.0s",
        "nocalls": 86
      },
      "stern": {
        "cpu:sec": 11.910958999999957,
        "cpu:hum": "11.9s",
        "wall:sec": 12.168190002441406,
        "wall:hum": "12.1s",
        "nocalls": 2584
      },
      "h_psi": {
        "cpu:sec": 11.671177000000032,
        "cpu:hum": "11.6s",
        "wall:sec": 11.919554948806763,
        "wall:hum": "11.9s",
        "nocalls": 2584
      },
      "h_psi:pot": {
        "cpu:sec": 11.603402000000024,
        "cpu:hum": "11.6s",
        "wall:sec": 11.848743915557861,
        "wall:hum": "11.8s",
        "nocalls": 2584
      },
      "vloc_psi": {
        "cpu:sec": 11.172530999999962,
        "cpu:hum": "11.1s",
        "wall:sec": 11.402681589126587,
        "wall:hum": "11.4s",
        "nocalls": 2584
      },
      "h_psi:calbec": {
        "cpu:sec": 0.1968680000000127,
        "cpu:hum": "00.1s",
        "wall:sec": 0.20455408096313477,
        "wall:hum": "00.2s",
        "nocalls": 2584
      },
      "calbec": {
        "cpu:sec": 0.19061800000001128,
        "cpu:hum": "00.1s",
        "wall:sec": 0.1992628574371338,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "add_vuspsi": {
        "cpu:sec": 0.2215959999999768,
        "cpu:hum": "00.2s",
        "wall:sec": 0.23134875297546387,
        "wall:hum": "00.2s",
        "nocalls": 2584
      },
      "alphapv": {
        "cpu:sec": 0.18319899999999478,
        "cpu:hum": "00.1s",
        "wall:sec": 0.1912243366241455,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "build_hr": {
        "cpu:sec": 0.04210300000000089,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.05498766899108887,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.00971599999999917,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011682987213134766,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.0007989999999971076,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0008130073547363281,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.09131499999999981,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.11519002914428711,
        "wall:hum": "00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 2.000000000279556e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 1.9073486328125e-06,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.024741000000000568,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.028733015060424805,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.0022690000000000765,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.005896091461181641,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  },
  "cores8_image1": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:54:15",
      "completed": true,
      "endtime": "12:54:35",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 8,
      "nimage": 1,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 8,
      "nproc": 8,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0,
            0,
            0,
            0,
            0,
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            8440,
            8440,
            8440,
            8441,
            8441,
            8441,
            8440,
            8439
          ],
          "min": 8439,
          "max": 8441,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.1611328125,
      "nlpp": 0.2578125,
      "rhor": 0.5,
      "rhog": 0.06439208984375,
      "gshells": 0.0061187744140625,
      "dvg": 3.22265625,
      "dng": 3.22265625,
      "hr_distr": 0.30517578125,
      "vr_distr": 0.30517578125,
      "dvpsi": 0.064453125,
      "dpsi": 0.064453125
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.259693626863767,
            -1.18037063523341,
            -1.1754646616000695,
            -1.1703890647786375,
            -0.8158114041813698,
            -0.8096134443836736,
            -0.8033363595797496,
            -0.6203695974193798,
            -0.6135888984245395,
            -0.45016201021076,
            -0.4423828464241999,
            -0.42263825090784324,
            -0.4159845470412334,
            -0.4084656801232046,
            -0.3909597252210494,
            -0.3511459993465811,
            -0.22026550826380842,
            -0.21287990375861335,
            -0.20417220310517742,
            -0.16607986473939793,
            -0.15965430422453572,
            -0.1552869316111202,
            -0.15232891957374756,
            -0.14384834518944145,
            -0.1365481416205224,
            -0.12507804573494102,
            -0.11535313855439155,
            -0.10455999467988523,
            -0.10039787275082997,
            -0.09867611611352078,
            -0.09329835316453546,
            -0.0916553800010889,
            -0.08516038202263809,
            -0.07956449758926287,
            -0.0776522819332965,
            -0.07304280547042427,
            -0.06889866015538801,
            -0.060129344984699226,
            -0.05777897810171553,
            -0.05590914112397842,
            -0.05090570129704209,
            -0.04951217828196728,
            -0.04763679816607,
            -0.04435125178552822,
            -0.04316092737405655,
            -0.040658964572182044,
            -0.037770940838741725,
            -0.03575338869606382,
            -0.03375888413756439,
            -0.015391229729679606
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 12.625158071517944,
          "time_elap:hum": "12.6s",
          "time_iter:sec": 12.625158071517944,
          "time_iter:hum": "12.6s",
          "sternop_ncalls": 1011,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.274569218148424,
            -1.1910659006124173,
            -1.1910295666000157,
            -1.1910000955877322,
            -0.8239701073277748,
            -0.8239142452093184,
            -0.823876302694043,
            -0.6354923005008956,
            -0.6292928315052133,
            -0.6292875972036233,
            -0.50035574866045,
            -0.5003056711411753,
            -0.5002216675641774,
            -0.4298365395994664,
            -0.4298224861947896,
            -0.42975866078838637,
            -0.23226243929369358,
            -0.23216124116822165,
            -0.23199723669480418,
            -0.18288253809479632,
            -0.1826756971490698,
            -0.18221979529945,
            -0.17780014089872245,
            -0.17666410242937716,
            -0.17661688788062355,
            -0.14556119517828267,
            -0.14523340247754712,
            -0.14483080980320298,
            -0.12069471593974593,
            -0.11907002275776325,
            -0.11870125313021605,
            -0.11805883724023229,
            -0.1157502102345325,
            -0.11513600423086216,
            -0.11427734748835242,
            -0.11347518157179552,
            -0.11003748325154587,
            -0.09206406365357983,
            -0.09142197534256809,
            -0.08968650428991841,
            -0.07825267788861512,
            -0.07556683660113613,
            -0.07370980661552441,
            -0.07139370671108095,
            -0.06941354990539823,
            -0.06807701096967515,
            -0.0626748411328694,
            -0.06200682164597126,
            -0.06071825902703152,
            -0.0601199411423769
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 15.526766061782837,
          "time_elap:hum": "15.5s",
          "time_iter:sec": 2.8730859756469727,
          "time_iter:hum": "02.8s",
          "sternop_ncalls": 1724,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.274572854940977,
            -1.191069454384579,
            -1.1910327350901508,
            -1.191003372312917,
            -0.8239792282600005,
            -0.8239181326043802,
            -0.8238842358108036,
            -0.6357049468823655,
            -0.6293018385142248,
            -0.6292989750501418,
            -0.5004532582210313,
            -0.500438262193659,
            -0.5004099608721926,
            -0.42987764012553475,
            -0.42987314570297525,
            -0.4298549451442063,
            -0.23236780011983788,
            -0.23236292073649673,
            -0.23234954051943169,
            -0.18321432030162849,
            -0.1831974981670672,
            -0.18319065848722493,
            -0.17838799628859256,
            -0.17748314932283812,
            -0.17748198583108918,
            -0.1459123050500718,
            -0.14590291267293282,
            -0.1459004882766568,
            -0.12254251669043058,
            -0.12010686037351824,
            -0.12010026206289369,
            -0.12008925127114563,
            -0.11633379727781662,
            -0.11632671504473083,
            -0.11527151278172475,
            -0.11526761371204894,
            -0.11522216529630082,
            -0.09403855843383135,
            -0.09402536478069971,
            -0.09398607945531462,
            -0.07990583871804154,
            -0.07985179243527982,
            -0.07973953397795491,
            -0.07464739673969524,
            -0.07299882490652768,
            -0.07294311057969094,
            -0.06561032525559345,
            -0.06553524704181668,
            -0.06526720723544793,
            -0.06304985910112168
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 18.442502975463867,
          "time_elap:hum": "18.4s",
          "time_iter:sec": 2.800601005554199,
          "time_iter:hum": "02.8s",
          "sternop_ncalls": 1693,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039697,
            -1.1910694545372724,
            -1.1910327351982364,
            -1.1910033724827902,
            -0.8239792291233673,
            -0.8239181330131932,
            -0.8238842365238518,
            -0.6357049739614702,
            -0.6293018403753737,
            -0.6292989761570742,
            -0.5004532957022857,
            -0.5004382854088264,
            -0.50041002011668,
            -0.42987766639436786,
            -0.42987316505825285,
            -0.4298549798697139,
            -0.23236813977838577,
            -0.23236315122099846,
            -0.23235040241016394,
            -0.1832163834406799,
            -0.1831983277249116,
            -0.1831931999034185,
            -0.1783900744976768,
            -0.17748546280869062,
            -0.1774841168770436,
            -0.14591408574062448,
            -0.14590668287979697,
            -0.1459045683488797,
            -0.12255854725349277,
            -0.12011375544381941,
            -0.12011186643496764,
            -0.12010955616842808,
            -0.11633754673440282,
            -0.11633671084247452,
            -0.11528208364394164,
            -0.11527826276896679,
            -0.11527686438995674,
            -0.09407593257356625,
            -0.09407348168598818,
            -0.0940702064892262,
            -0.07995041569974855,
            -0.07994729180951952,
            -0.07994577204038451,
            -0.074773386379634,
            -0.07309594805831679,
            -0.07309503695621228,
            -0.06577569429100959,
            -0.06577009478861995,
            -0.06576499769028898,
            -0.06313172884590956
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 19.770573139190674,
          "time_elap:hum": "19.7s",
          "time_iter:sec": 1.1734910011291504,
          "time_iter:hum": "01.1s",
          "sternop_ncalls": 707,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 9.028025000000001,
        "cpu:hum": "09.0s",
        "wall:sec": 19.94772696495056,
        "wall:hum": "19.9s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.08546100000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.10113382339477539,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.003737000000000046,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.00562596321105957,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.012688000000000033,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.018635272979736328,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 1.7844929999999293,
        "cpu:hum": "01.7s",
        "wall:sec": 1.815988540649414,
        "wall:hum": "01.8s",
        "nocalls": 20867
      },
      "init_vloc": {
        "cpu:sec": 0.011332999999999982,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011444091796875,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.002626000000000017,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.002989053726196289,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.011722999999999983,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.012320995330810547,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.010894999999999988,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011477947235107422,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 0.0008119999999999794,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0008242130279541016,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.010936000000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.013143062591552734,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.010249999999999981,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011604070663452148,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.007956000000000019,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.008252859115600586,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 8.930741000000001,
        "cpu:hum": "08.9s",
        "wall:sec": 19.82901096343994,
        "wall:hum": "19.8s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.0035310000000000064,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0038518905639648438,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.06189600000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.06200599670410156,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.03928599999999882,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03935074806213379,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 8.631663999999999,
        "cpu:hum": "08.6s",
        "wall:sec": 8.770196914672852,
        "wall:hum": "08.7s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.0009999999999994458,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.001298666000366211,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.0009889999999987964,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0012857913970947266,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 6.475061000000003,
        "cpu:hum": "06.4s",
        "wall:sec": 6.574361085891724,
        "wall:hum": "06.5s",
        "nocalls": 20858
      },
      "alphapc": {
        "cpu:sec": 0.013698999999997241,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.014657735824584961,
        "wall:hum": "< 00.1s",
        "nocalls": 221
      },
      "wstat_restar": {
        "cpu:sec": 0.10155300000000089,
        "cpu:hum": "00.1s",
        "wall:sec": 10.799059629440308,
        "wall:hum": "10.7s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.09541400000001055,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.79274582862854,
        "wall:hum": "10.7s",
        "nocalls": 750
      },
      "linstern": {
        "cpu:sec": 7.77876600000001,
        "cpu:hum": "07.7s",
        "wall:sec": 7.901293754577637,
        "wall:hum": "07.9s",
        "nocalls": 171
      },
      "stern": {
        "cpu:sec": 7.279273999999987,
        "cpu:hum": "07.2s",
        "wall:sec": 7.390485763549805,
        "wall:hum": "07.3s",
        "nocalls": 5135
      },
      "h_psi": {
        "cpu:sec": 7.076503999999984,
        "cpu:hum": "07.0s",
        "wall:sec": 7.185961723327637,
        "wall:hum": "07.1s",
        "nocalls": 5135
      },
      "h_psi:pot": {
        "cpu:sec": 7.03462799999996,
        "cpu:hum": "07.0s",
        "wall:sec": 7.1426615715026855,
        "wall:hum": "07.1s",
        "nocalls": 5135
      },
      "vloc_psi": {
        "cpu:sec": 6.621633999999978,
        "cpu:hum": "06.6s",
        "wall:sec": 6.724324464797974,
        "wall:hum": "06.7s",
        "nocalls": 5135
      },
      "h_psi:calbec": {
        "cpu:sec": 0.24116699999999192,
        "cpu:hum": "00.2s",
        "wall:sec": 0.24486494064331055,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "calbec": {
        "cpu:sec": 0.22762499999995178,
        "cpu:hum": "00.2s",
        "wall:sec": 0.23334813117980957,
        "wall:hum": "00.2s",
        "nocalls": 5135
      },
      "add_vuspsi": {
        "cpu:sec": 0.14552599999997717,
        "cpu:hum": "00.1s",
        "wall:sec": 0.15027070045471191,
        "wall:hum": "00.1s",
        "nocalls": 5135
      },
      "alphapv": {
        "cpu:sec": 0.16007999999999,
        "cpu:hum": "00.1s",
        "wall:sec": 0.16466116905212402,
        "wall:hum": "00.1s",
        "nocalls": 5135
      },
      "build_hr": {
        "cpu:sec": 0.01910700000000176,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.020308971405029297,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.010699999999999932,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011595964431762695,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.00017300000000020077,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0008790493011474609,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.0343340000000012,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.041506290435791016,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 2.000000000279556e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 9.5367431640625e-07,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.01126999999999967,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011270999908447266,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.0035480000000003287,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011056900024414062,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  },
  "cores8_image2": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:54:54",
      "completed": true,
      "endtime": "12:55:13",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 8,
      "nimage": 2,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 4,
      "nproc": 8,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0,
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            16881,
            16880,
            16881,
            16880
          ],
          "min": 16880,
          "max": 16881,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.322265625,
      "nlpp": 0.515625,
      "rhor": 1.0,
      "rhog": 0.12879180908203125,
      "gshells": 0.00637054443359375,
      "dvg": 3.22265625,
      "dng": 3.22265625,
      "hr_distr": 0.152587890625,
      "vr_distr": 0.152587890625,
      "dvpsi": 0.12890625,
      "dpsi": 0.12890625
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.2596936268637668,
            -1.1803706352334105,
            -1.1754646616000703,
            -1.170389064778638,
            -0.8158114041813699,
            -0.8096134443836732,
            -0.8033363595797497,
            -0.6203695974193806,
            -0.6135888984245389,
            -0.4501620102107596,
            -0.4423828464242001,
            -0.422638250907843,
            -0.4159845470412336,
            -0.40846568012320394,
            -0.39095972522104927,
            -0.35114599934658,
            -0.2202655082638082,
            -0.21287990375861338,
            -0.20417220310517756,
            -0.16607986473939787,
            -0.15965430422453564,
            -0.15528693161112037,
            -0.15232891957374767,
            -0.14384834518944137,
            -0.13654814162052228,
            -0.12507804573494122,
            -0.11535313855439146,
            -0.1045599946798854,
            -0.10039787275083008,
            -0.0986761161135207,
            -0.09329835316453527,
            -0.09165538000108893,
            -0.08516038202263813,
            -0.079564497589263,
            -0.07765228193329644,
            -0.07304280547042429,
            -0.06889866015538806,
            -0.06012934498469905,
            -0.057778978101715596,
            -0.055909141123978455,
            -0.0509057012970421,
            -0.04951217828196709,
            -0.04763679816607005,
            -0.04435125178552812,
            -0.04316092737405661,
            -0.040658964572182044,
            -0.03777094083874177,
            -0.035753388696063704,
            -0.033758884137564026,
            -0.015391229729679616
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 1.8937718868255615,
          "time_elap:hum": "01.8s",
          "time_iter:sec": 1.8937718868255615,
          "time_iter:hum": "01.8s",
          "sternop_ncalls": 505,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.274569218148424,
            -1.1910659006124173,
            -1.1910295666000164,
            -1.1910000955877325,
            -0.8239701073277748,
            -0.8239142452093183,
            -0.8238763026940426,
            -0.6354923005008952,
            -0.6292928315052136,
            -0.6292875972036228,
            -0.5003557486604495,
            -0.5003056711411754,
            -0.500221667564177,
            -0.42983653959946666,
            -0.42982248619478997,
            -0.4297586607883869,
            -0.23226243929369347,
            -0.2321612411682214,
            -0.23199723669480404,
            -0.1828825380947964,
            -0.18267569714906964,
            -0.18221979529944968,
            -0.1778001408987224,
            -0.17666410242937705,
            -0.1766168878806236,
            -0.14556119517828264,
            -0.14523340247754696,
            -0.144830809803203,
            -0.12069471593974579,
            -0.11907002275776317,
            -0.1187012531302161,
            -0.11805883724023197,
            -0.11575021023453243,
            -0.11513600423086204,
            -0.11427734748835243,
            -0.11347518157179554,
            -0.11003748325154568,
            -0.09206406365357972,
            -0.09142197534256796,
            -0.08968650428991835,
            -0.0782526778886151,
            -0.07556683660113617,
            -0.0737098066155244,
            -0.07139370671108086,
            -0.06941354990539815,
            -0.06807701096967501,
            -0.0626748411328694,
            -0.0620068216459712,
            -0.06071825902703148,
            -0.06011994114237686
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 4.45184588432312,
          "time_elap:hum": "04.4s",
          "time_iter:sec": 2.542207956314087,
          "time_iter:hum": "02.5s",
          "sternop_ncalls": 860,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.2745728549409776,
            -1.1910694543845788,
            -1.1910327350901506,
            -1.191003372312916,
            -0.8239792282599998,
            -0.8239181326043814,
            -0.8238842358108044,
            -0.6357049468823651,
            -0.6293018385142245,
            -0.6292989750501418,
            -0.5004532582210302,
            -0.5004382621936591,
            -0.500409960872193,
            -0.4298776401255349,
            -0.42987314570297547,
            -0.4298549451442065,
            -0.23236780011983788,
            -0.23236292073649673,
            -0.23234954051943105,
            -0.1832143203016287,
            -0.1831974981670673,
            -0.1831906584872249,
            -0.1783879962885928,
            -0.177483149322838,
            -0.17748198583108957,
            -0.1459123050500714,
            -0.14590291267293262,
            -0.14590048827665686,
            -0.12254251669043104,
            -0.12010686037351828,
            -0.12010026206289369,
            -0.12008925127114568,
            -0.11633379727781663,
            -0.11632671504473074,
            -0.11527151278172483,
            -0.11526761371204883,
            -0.11522216529630089,
            -0.09403855843383135,
            -0.09402536478069969,
            -0.09398607945531466,
            -0.07990583871804158,
            -0.07985179243527983,
            -0.07973953397795477,
            -0.07464739673969546,
            -0.07299882490652766,
            -0.072943110579691,
            -0.06561032525559302,
            -0.06553524704181708,
            -0.0652672072354478,
            -0.06304985910112179
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 17.69839310646057,
          "time_elap:hum": "17.6s",
          "time_iter:sec": 2.8056859970092773,
          "time_iter:hum": "02.8s",
          "sternop_ncalls": 848,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039706,
            -1.191069454537273,
            -1.1910327351982364,
            -1.1910033724827906,
            -0.8239792291233673,
            -0.8239181330131937,
            -0.8238842365238513,
            -0.6357049739614697,
            -0.6293018403753735,
            -0.6292989761570734,
            -0.5004532957022856,
            -0.5004382854088263,
            -0.5004100201166797,
            -0.42987766639436764,
            -0.4298731650582529,
            -0.429854979869714,
            -0.23236813977838577,
            -0.2323631512209985,
            -0.23235040241016391,
            -0.1832163834406796,
            -0.18319832772491168,
            -0.18319319990341842,
            -0.178390074497677,
            -0.17748546280869068,
            -0.1774841168770437,
            -0.14591408574062448,
            -0.1459066828797969,
            -0.1459045683488796,
            -0.12255854725349297,
            -0.12011375544381948,
            -0.12011186643496752,
            -0.12010955616842803,
            -0.11633754673440294,
            -0.11633671084247454,
            -0.11528208364394157,
            -0.11527826276896694,
            -0.11527686438995666,
            -0.09407593257356622,
            -0.09407348168598818,
            -0.09407020648922643,
            -0.07995041569974852,
            -0.07994729180951954,
            -0.07994577204038462,
            -0.07477338637963418,
            -0.07309594805831678,
            -0.07309503695621224,
            -0.06577569429100964,
            -0.06577009478862005,
            -0.06576499769028907,
            -0.06313172884591003
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 19.02205991744995,
          "time_elap:hum": "19.0s",
          "time_iter:sec": 1.243772029876709,
          "time_iter:hum": "01.2s",
          "sternop_ncalls": 371,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 8.486615,
        "cpu:hum": "08.4s",
        "wall:sec": 19.21418809890747,
        "wall:hum": "19.2s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.09184,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.11319589614868164,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.005957999999999991,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.007938861846923828,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.012876999999999972,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.020419836044311523,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 1.6729960000000101,
        "cpu:hum": "01.6s",
        "wall:sec": 1.6957542896270752,
        "wall:hum": "01.6s",
        "nocalls": 10503
      },
      "init_vloc": {
        "cpu:sec": 0.011685000000000029,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011752128601074219,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.005000000000000032,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.005002737045288086,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.020469000000000015,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.024450063705444336,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.01893800000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.022912979125976562,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 0.0015060000000000073,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0015070438385009766,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.012021000000000004,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01517176628112793,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.011891000000000013,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.013781070709228516,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.010259999999999991,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.010342121124267578,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 8.379697,
        "cpu:hum": "08.3s",
        "wall:sec": 19.08140206336975,
        "wall:hum": "19.0s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.003359000000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0037758350372314453,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.03194800000000003,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03194999694824219,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.04946999999999946,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.04967069625854492,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 8.134131,
        "cpu:hum": "08.1s",
        "wall:sec": 8.221933126449585,
        "wall:hum": "08.2s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.001720000000001498,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.002134084701538086,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.001706999999999681,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0021233558654785156,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 6.2190890000000305,
        "cpu:hum": "06.2s",
        "wall:sec": 6.280773401260376,
        "wall:hum": "06.2s",
        "nocalls": 10494
      },
      "alphapc": {
        "cpu:sec": 0.008368999999996518,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.009194612503051758,
        "wall:hum": "< 00.1s",
        "nocalls": 111
      },
      "wstat_restar": {
        "cpu:sec": 0.04411699999999996,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.581511735916138,
        "wall:hum": "10.5s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.041872000000001464,
        "cpu:hum": "< 00.1s",
        "wall:sec": 10.570384979248047,
        "wall:hum": "10.5s",
        "nocalls": 375
      },
      "linstern": {
        "cpu:sec": 7.315644,
        "cpu:hum": "07.3s",
        "wall:sec": 7.393738508224487,
        "wall:hum": "07.3s",
        "nocalls": 86
      },
      "stern": {
        "cpu:sec": 6.84854600000001,
        "cpu:hum": "06.8s",
        "wall:sec": 6.918580770492554,
        "wall:hum": "06.9s",
        "nocalls": 2584
      },
      "h_psi": {
        "cpu:sec": 6.703067000000024,
        "cpu:hum": "06.7s",
        "wall:sec": 6.771934747695923,
        "wall:hum": "06.7s",
        "nocalls": 2584
      },
      "h_psi:pot": {
        "cpu:sec": 6.6648269999999865,
        "cpu:hum": "06.6s",
        "wall:sec": 6.732428789138794,
        "wall:hum": "06.7s",
        "nocalls": 2584
      },
      "vloc_psi": {
        "cpu:sec": 6.359515000000003,
        "cpu:hum": "06.3s",
        "wall:sec": 6.425034046173096,
        "wall:hum": "06.4s",
        "nocalls": 2584
      },
      "h_psi:calbec": {
        "cpu:sec": 0.16404399999999697,
        "cpu:hum": "00.1s",
        "wall:sec": 0.16550946235656738,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "calbec": {
        "cpu:sec": 0.15758099999997377,
        "cpu:hum": "00.1s",
        "wall:sec": 0.16000103950500488,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "add_vuspsi": {
        "cpu:sec": 0.1283430000000081,
        "cpu:hum": "00.1s",
        "wall:sec": 0.13076400756835938,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "alphapv": {
        "cpu:sec": 0.11087900000002193,
        "cpu:hum": "00.1s",
        "wall:sec": 0.11302924156188965,
        "wall:hum": "00.1s",
        "nocalls": 2584
      },
      "build_hr": {
        "cpu:sec": 0.026526999999999745,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.034379005432128906,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.011497999999999564,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.012511968612670898,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.0004819999999998714,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0008170604705810547,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.04900399999999916,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.06461381912231445,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 2.000000000279556e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 1.1920928955078125e-06,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.015019999999999811,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0160219669342041,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.003435000000001409,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.005959987640380859,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  },
  "cores8_image4": {
    "runjob": {
      "startdate": " 7Oct2022",
      "starttime": "12:55:20",
      "completed": true,
      "endtime": "12:55:29",
      "enddate": " 7Oct2022"
    },
    "software": {
      "package": "WEST",
      "program": "WSTAT",
      "version": "5.2.0",
      "westgit": "v5.2.0-4-ga2c3fe0",
      "website": "https://west-code.org",
      "citation": "M. Govoni et al., J. Chem. Theory Comput. 11, 2680 (2015).",
      "qeversion": "7.1"
    },
    "config": {
      "io": {
        "islittleendian": true
      }
    },
    "parallel": {
      "nranks": 8,
      "nimage": 4,
      "npool": 1,
      "nbgrp": 1,
      "nrg": 2,
      "nproc": 8,
      "nthreads": 1
    },
    "input": {
      "input_west": {
        "qe_prefix": "silane",
        "west_prefix": "silane",
        "outdir": "./"
      },
      "wstat_control": {
        "wstat_calculation": "S",
        "n_pdep_eigen": 50,
        "n_pdep_times": 4,
        "n_pdep_maxiter": 100,
        "n_dfpt_maxiter": 250,
        "n_pdep_read_from_file": 0,
        "n_steps_write_restart": 1,
        "trev_pdep": 0.001,
        "trev_pdep_rel": 0.1,
        "tr2_dfpt": 1e-12,
        "l_kinetic_only": false,
        "l_minimize_exx_if_active": false,
        "l_use_ecutrho": false,
        "qlist": [
          1
        ]
      },
      "server_control": {
        "document": "{}"
      }
    },
    "system": {
      "basis": {
        "npw": {
          "proc": [
            0,
            0
          ],
          "min": 0,
          "max": 0,
          "sum": 0
        },
        "ngm": {
          "proc": [
            33761,
            33761
          ],
          "min": 33761,
          "max": 33761,
          "sum": 67522
        },
        "gamma_only": true,
        "ecutwfc:ry": 25.0,
        "ecutrho:ry": 100.0
      },
      "cell": {
        "units": "a.u.",
        "omega": 8000.0,
        "a1": [
          20.0,
          0.0,
          0.0
        ],
        "a2": [
          0.0,
          20.0,
          0.0
        ],
        "a3": [
          0.0,
          0.0,
          20.0
        ],
        "b1": [
          0.3141592653589793,
          0.0,
          0.0
        ],
        "b2": [
          0.0,
          0.3141592653589793,
          0.0
        ],
        "b3": [
          0.0,
          0.0,
          0.3141592653589793
        ],
        "alat": 20.0,
        "tpiba": 0.3141592653589793
      },
      "electron": {
        "nbnd": 10,
        "nkstot": 1,
        "nspin": 1,
        "nelec": 8.0,
        "npol": 1,
        "lsda": false,
        "noncolin": false,
        "lspinorb": false
      },
      "3dfft": {
        "s": [
          64,
          64,
          64
        ],
        "p": [
          64,
          64,
          64
        ]
      },
      "bzsamp": {
        "k": [
          {
            "id": 1,
            "crystcoord": [
              0.0,
              0.0,
              0.0
            ]
          }
        ]
      }
    },
    "memory": {
      "units": "Mb",
      "evc": 0.643768310546875,
      "nlpp": 1.030029296875,
      "rhor": 2.0,
      "rhog": 0.25757598876953125,
      "gshells": 0.00644683837890625,
      "dvg": 3.218841552734375,
      "dng": 3.218841552734375,
      "hr_distr": 0.0762939453125,
      "vr_distr": 0.0762939453125,
      "dvpsi": 0.25750732421875,
      "dpsi": 0.25750732421875
    },
    "exec": {
      "ndav": 4,
      "davitr": [
        {
          "dav_iter": -1,
          "ev": [
            -1.259693626863766,
            -1.1803706352334107,
            -1.1754646616000721,
            -1.1703890647786372,
            -0.81581140418137,
            -0.8096134443836738,
            -0.8033363595797494,
            -0.6203695974193799,
            -0.6135888984245389,
            -0.4501620102107598,
            -0.442382846424199,
            -0.4226382509078432,
            -0.41598454704123383,
            -0.4084656801232042,
            -0.39095972522104955,
            -0.3511459993465803,
            -0.22026550826380828,
            -0.21287990375861357,
            -0.20417220310517742,
            -0.16607986473939804,
            -0.15965430422453575,
            -0.15528693161112,
            -0.15232891957374775,
            -0.14384834518944134,
            -0.13654814162052234,
            -0.1250780457349413,
            -0.11535313855439146,
            -0.10455999467988582,
            -0.10039787275083,
            -0.09867611611352078,
            -0.09329835316453536,
            -0.09165538000108892,
            -0.08516038202263831,
            -0.07956449758926284,
            -0.07765228193329646,
            -0.07304280547042423,
            -0.068898660155388,
            -0.06012934498469917,
            -0.0577789781017156,
            -0.05590914112397849,
            -0.05090570129704249,
            -0.0495121782819671,
            -0.047636798166070006,
            -0.04435125178552808,
            -0.04316092737405635,
            -0.04065896457218194,
            -0.03777094083874186,
            -0.03575338869606368,
            -0.03375888413756408,
            -0.015391229729678994
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 1.8719420433044434,
          "time_elap:hum": "01.8s",
          "time_iter:sec": 1.871941089630127,
          "time_iter:hum": "01.8s",
          "sternop_ncalls": 262,
          "dfpt_tr2": 1e-06,
          "dfpt_dim": 50,
          "diago_dim": 50
        },
        {
          "dav_iter": 1,
          "ev": [
            -1.2745692181484245,
            -1.1910659006124182,
            -1.191029566600014,
            -1.191000095587733,
            -0.8239701073277742,
            -0.8239142452093179,
            -0.823876302694042,
            -0.6354923005008967,
            -0.629292831505213,
            -0.6292875972036236,
            -0.500355748660449,
            -0.5003056711411754,
            -0.5002216675641774,
            -0.42983653959946644,
            -0.4298224861947898,
            -0.4297586607883869,
            -0.23226243929369342,
            -0.23216124116822157,
            -0.23199723669480413,
            -0.18288253809479654,
            -0.18267569714906998,
            -0.1822197952994498,
            -0.17780014089872231,
            -0.17666410242937705,
            -0.17661688788062366,
            -0.14556119517828275,
            -0.14523340247754707,
            -0.14483080980320326,
            -0.12069471593974568,
            -0.11907002275776313,
            -0.11870125313021614,
            -0.11805883724023214,
            -0.11575021023453244,
            -0.11513600423086219,
            -0.11427734748835243,
            -0.11347518157179555,
            -0.11003748325154587,
            -0.0920640636535798,
            -0.09142197534256806,
            -0.08968650428991846,
            -0.07825267788861529,
            -0.07556683660113608,
            -0.07370980661552447,
            -0.07139370671108115,
            -0.06941354990539814,
            -0.06807701096967524,
            -0.06267484113286932,
            -0.062006821645971114,
            -0.060718259027031485,
            -0.060119941142376856
          ],
          "conv": [
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 50,
          "time_elap:sec": 4.385267972946167,
          "time_elap:hum": "04.3s",
          "time_iter:sec": 2.500458002090454,
          "time_iter:hum": "02.5s",
          "sternop_ncalls": 413,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 100
        },
        {
          "dav_iter": 2,
          "ev": [
            -1.2745728549409772,
            -1.1910694543845814,
            -1.1910327350901502,
            -1.1910033723129163,
            -0.8239792282600015,
            -0.8239181326043801,
            -0.8238842358108034,
            -0.6357049468823652,
            -0.6293018385142246,
            -0.629298975050142,
            -0.500453258221031,
            -0.5004382621936584,
            -0.5004099608721916,
            -0.429877640125535,
            -0.4298731457029753,
            -0.42985494514420647,
            -0.23236780011983776,
            -0.23236292073649667,
            -0.23234954051943107,
            -0.18321432030162885,
            -0.18319749816706737,
            -0.1831906584872249,
            -0.17838799628859256,
            -0.177483149322838,
            -0.17748198583108935,
            -0.1459123050500716,
            -0.14590291267293287,
            -0.14590048827665747,
            -0.12254251669043079,
            -0.12010686037351828,
            -0.12010026206289387,
            -0.12008925127114567,
            -0.1163337972778167,
            -0.11632671504473081,
            -0.11527151278172475,
            -0.11526761371204905,
            -0.11522216529630101,
            -0.09403855843383141,
            -0.09402536478069976,
            -0.0939860794553147,
            -0.07990583871804147,
            -0.0798517924352798,
            -0.0797395339779547,
            -0.07464739673969545,
            -0.07299882490652765,
            -0.07294311057969113,
            -0.06561032525559346,
            -0.06553524704181682,
            -0.06526720723544785,
            -0.06304985910112172
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            false,
            false,
            false,
            false,
            false,
            true,
            false,
            true,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false,
            false
          ],
          "notcnv": 21,
          "time_elap:sec": 7.018714904785156,
          "time_elap:hum": "07.0s",
          "time_iter:sec": 2.5913259983062744,
          "time_iter:hum": "02.5s",
          "sternop_ncalls": 441,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 50,
          "diago_dim": 150
        },
        {
          "dav_iter": 3,
          "ev": [
            -1.2745728551039701,
            -1.1910694545372733,
            -1.1910327351982364,
            -1.1910033724827906,
            -0.8239792291233672,
            -0.8239181330131933,
            -0.8238842365238506,
            -0.6357049739614699,
            -0.629301840375373,
            -0.629298976157073,
            -0.5004532957022857,
            -0.5004382854088254,
            -0.5004100201166792,
            -0.4298776663943683,
            -0.4298731650582531,
            -0.4298549798697147,
            -0.23236813977838583,
            -0.23236315122099882,
            -0.23235040241016383,
            -0.18321638344067967,
            -0.18319832772491176,
            -0.18319319990341867,
            -0.1783900744976767,
            -0.17748546280869046,
            -0.17748411687704346,
            -0.14591408574062445,
            -0.14590668287979705,
            -0.14590456834887977,
            -0.12255854725349268,
            -0.12011375544381958,
            -0.12011186643496735,
            -0.1201095561684281,
            -0.11633754673440302,
            -0.11633671084247438,
            -0.11528208364394166,
            -0.11527826276896694,
            -0.11527686438995668,
            -0.09407593257356621,
            -0.09407348168598817,
            -0.0940702064892261,
            -0.07995041569974852,
            -0.07994729180951944,
            -0.07994577204038454,
            -0.07477338637963424,
            -0.07309594805831672,
            -0.0730950369562123,
            -0.06577569429100966,
            -0.06577009478861984,
            -0.06576499769028914,
            -0.06313172884590965
          ],
          "conv": [
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true,
            true
          ],
          "notcnv": 0,
          "time_elap:sec": 8.228322982788086,
          "time_elap:hum": "08.2s",
          "time_iter:sec": 1.1624119281768799,
          "time_iter:hum": "01.1s",
          "sternop_ncalls": 168,
          "dfpt_tr2": 1e-12,
          "dfpt_dim": 21,
          "diago_dim": 171
        }
      ]
    },
    "timing": {
      "WSTAT": {
        "cpu:sec": 8.096052,
        "cpu:hum": "08.0s",
        "wall:sec": 8.456115007400513,
        "wall:hum": "08.4s",
        "nocalls": 2
      },
      "wstat_readin": {
        "cpu:sec": 0.11852299999999999,
        "cpu:hum": "00.1s",
        "wall:sec": 0.14771389961242676,
        "wall:hum": "00.1s",
        "nocalls": 1
      },
      "fetch_input": {
        "cpu:sec": 0.004519000000000051,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.005759000778198242,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "fft": {
        "cpu:sec": 0.025958000000000148,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.03260374069213867,
        "wall:hum": "< 00.1s",
        "nocalls": 9
      },
      "fft_scatter": {
        "cpu:sec": 1.2829610000000082,
        "cpu:hum": "01.2s",
        "wall:sec": 1.3378376960754395,
        "wall:hum": "01.3s",
        "nocalls": 5235
      },
      "init_vloc": {
        "cpu:sec": 0.011355999999999977,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.011495828628540039,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "init_us_1": {
        "cpu:sec": 0.007745000000000002,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.008105993270874023,
        "wall:hum": "< 00.1s",
        "nocalls": 2
      },
      "v_of_rho": {
        "cpu:sec": 0.03131400000000001,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.04341888427734375,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_xc": {
        "cpu:sec": 0.028764000000000012,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.040560007095336914,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "v_h": {
        "cpu:sec": 0.0025350000000000095,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0028388500213623047,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "do_setup": {
        "cpu:sec": 0.015824000000000005,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.019565820693969727,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "init_pw_ar": {
        "cpu:sec": 0.01506200000000002,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.018156051635742188,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "hinit0": {
        "cpu:sec": 0.013831999999999955,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.014127969741821289,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "chidiago": {
        "cpu:sec": 7.959707,
        "cpu:hum": "07.9s",
        "wall:sec": 8.284525871276855,
        "wall:hum": "08.2s",
        "nocalls": 1
      },
      "sqvc_init": {
        "cpu:sec": 0.0036349999999999993,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.003634929656982422,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "randomize": {
        "cpu:sec": 0.016220000000000012,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01707291603088379,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "paramgs": {
        "cpu:sec": 0.06255500000000058,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.06453704833984375,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "dfpt": {
        "cpu:sec": 7.697757999999999,
        "cpu:hum": "07.6s",
        "wall:sec": 7.86233377456665,
        "wall:hum": "07.8s",
        "nocalls": 5
      },
      "init_us_2": {
        "cpu:sec": 0.004299000000000497,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.00503087043762207,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "init_us_2:cp": {
        "cpu:sec": 0.004284999999999428,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0050160884857177734,
        "wall:hum": "< 00.1s",
        "nocalls": 5
      },
      "fftw": {
        "cpu:sec": 5.5317849999999975,
        "cpu:hum": "05.5s",
        "wall:sec": 5.650116682052612,
        "wall:hum": "05.6s",
        "nocalls": 5226
      },
      "alphapc": {
        "cpu:sec": 0.0063670000000000115,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.007271766662597656,
        "wall:hum": "< 00.1s",
        "nocalls": 56
      },
      "wstat_restar": {
        "cpu:sec": 0.030218999999999774,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.1212167739868164,
        "wall:hum": "00.1s",
        "nocalls": 4
      },
      "pdep_write": {
        "cpu:sec": 0.0241009999999946,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.10291934013366699,
        "wall:hum": "00.1s",
        "nocalls": 191
      },
      "linstern": {
        "cpu:sec": 6.517644,
        "cpu:hum": "06.5s",
        "wall:sec": 6.660977125167847,
        "wall:hum": "06.6s",
        "nocalls": 43
      },
      "stern": {
        "cpu:sec": 6.091814999999988,
        "cpu:hum": "06.0s",
        "wall:sec": 6.219251871109009,
        "wall:hum": "06.2s",
        "nocalls": 1284
      },
      "h_psi": {
        "cpu:sec": 5.968536000000004,
        "cpu:hum": "05.9s",
        "wall:sec": 6.091755628585815,
        "wall:hum": "06.0s",
        "nocalls": 1284
      },
      "h_psi:pot": {
        "cpu:sec": 5.934534999999992,
        "cpu:hum": "05.9s",
        "wall:sec": 6.056378602981567,
        "wall:hum": "06.0s",
        "nocalls": 1284
      },
      "vloc_psi": {
        "cpu:sec": 5.6982530000000144,
        "cpu:hum": "05.6s",
        "wall:sec": 5.812019348144531,
        "wall:hum": "05.8s",
        "nocalls": 1284
      },
      "h_psi:calbec": {
        "cpu:sec": 0.11695600000000184,
        "cpu:hum": "00.1s",
        "wall:sec": 0.12122464179992676,
        "wall:hum": "00.1s",
        "nocalls": 1284
      },
      "calbec": {
        "cpu:sec": 0.11381399999999608,
        "cpu:hum": "00.1s",
        "wall:sec": 0.11856460571289062,
        "wall:hum": "00.1s",
        "nocalls": 1284
      },
      "add_vuspsi": {
        "cpu:sec": 0.1132219999999986,
        "cpu:hum": "00.1s",
        "wall:sec": 0.11793327331542969,
        "wall:hum": "00.1s",
        "nocalls": 1284
      },
      "alphapv": {
        "cpu:sec": 0.0944730000000149,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0983283519744873,
        "wall:hum": "< 00.1s",
        "nocalls": 1284
      },
      "build_hr": {
        "cpu:sec": 0.036316000000001125,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.043238162994384766,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "diagox": {
        "cpu:sec": 0.010235000000001548,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0121917724609375,
        "wall:hum": "< 00.1s",
        "nocalls": 4
      },
      "redistr_vr": {
        "cpu:sec": 0.0005069999999998132,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0005421638488769531,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "update_vr": {
        "cpu:sec": 0.06648300000000074,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.08039498329162598,
        "wall:hum": "< 00.1s",
        "nocalls": 3
      },
      "chidiago:las": {
        "cpu:sec": 1.0000000010279564e-06,
        "cpu:hum": "< 00.1s",
        "wall:sec": 9.5367431640625e-07,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "refresh_vr": {
        "cpu:sec": 0.016317000000000803,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.01827692985534668,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      },
      "pdep_db": {
        "cpu:sec": 0.0025700000000004053,
        "cpu:hum": "< 00.1s",
        "wall:sec": 0.0039370059967041016,
        "wall:hum": "< 00.1s",
        "nocalls": 1
      }
    }
  }
}

We plot the energy levels of DFT and GW.

[4]:
import numpy as np
import matplotlib.pyplot as plt

# timings
y = {}
c = {}

# 2 cores
for name in ['cores2_image1'] :
    y[name] = [ data[name]['timing']['WSTAT']['wall:sec'] ]
    c[name] = 'black'

# 4 cores
for name in ['cores4_image1', 'cores4_image2'] :
    y[name] = [ data[name]['timing']['WSTAT']['wall:sec'] ]
    c[name] = 'blue'

# 8 cores
for name in ['cores8_image1','cores8_image2','cores8_image4'] :
    y[name] = [ data[name]['timing']['WSTAT']['wall:sec'] ]
    c[name] = 'green'

print(y)

# plot
x = list(range(1, len(y)+1))
labels = y.keys()

fig, ax = plt.subplots(1, 1)
counter = 0
for i in labels :
    for a in y[i] :
        ax.hlines(a, x[counter]-0.25, x[counter]+0.25, color=c[i])
    counter += 1

plt.xticks(x, labels, rotation='vertical')
plt.ylabel('Time (s)')

plt.title('Parallelization')

plt.show()
{'cores2_image1': [65.05135607719421], 'cores4_image1': [26.63409113883972], 'cores4_image2': [25.37000799179077], 'cores8_image1': [19.94772696495056], 'cores8_image2': [19.21418809890747], 'cores8_image4': [8.456115007400513]}
../../_images/tutorials_MICCoM_School_2017_miccom_004_12_1.png