mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 22:13:38 +01:00
Merge branch 'dev' of github.com:QuantumPackage/qp2 into dev
This commit is contained in:
commit
c5d623feb6
74
.drone.yml
74
.drone.yml
@ -7,46 +7,46 @@ clone:
|
|||||||
depth: 10
|
depth: 10
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: configure debug
|
||||||
|
image: scemama666/qp2_env
|
||||||
|
commands:
|
||||||
|
- ./configure -i all -c ./config/gfortran_debug.cfg
|
||||||
|
- bash -c "source quantum_package.rc ; exec qp_plugins download https://gitlab.com/scemama/qp_plugins_scemama"
|
||||||
|
- bash -c "source quantum_package.rc ; exec qp_plugins install champ"
|
||||||
|
|
||||||
- name: configure
|
- name: compile debug
|
||||||
image: scemama666/qp2_env
|
image: scemama666/qp2_env
|
||||||
commands:
|
commands:
|
||||||
- ./configure -i all -c ./config/gfortran_debug.cfg
|
- bash -c "source quantum_package.rc ; exec ninja"
|
||||||
- bash -c "source quantum_package.rc ; exec qp_plugins download https://gitlab.com/scemama/qp_plugins_scemama"
|
|
||||||
- bash -c "source quantum_package.rc ; exec qp_plugins install champ"
|
|
||||||
|
|
||||||
- name: compile
|
- name: testing debug
|
||||||
image: scemama666/qp2_env
|
image: scemama666/qp2_env
|
||||||
commands:
|
commands:
|
||||||
- bash -c "source quantum_package.rc ; exec ninja"
|
- bash -c "source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
|
||||||
|
|
||||||
- name: testing
|
- name: configure fast
|
||||||
image: scemama666/qp2_env
|
image: scemama666/qp2_env
|
||||||
commands:
|
commands:
|
||||||
- bash -c "source quantum_package.rc ; TRAVIS=1 exec qp_test -a"
|
- ./configure -c ./config/gfortran_avx.cfg
|
||||||
|
|
||||||
---
|
- name: compile fast
|
||||||
kind: pipeline
|
image: scemama666/qp2_env
|
||||||
type: docker
|
commands:
|
||||||
name: gfortran-avx
|
- bash -c "source quantum_package.rc ; exec ninja"
|
||||||
|
|
||||||
clone:
|
- name: testing fast
|
||||||
depth: 10
|
image: scemama666/qp2_env
|
||||||
|
commands:
|
||||||
steps:
|
- bash -c "source quantum_package.rc ; exec qp_test -a"
|
||||||
|
|
||||||
- name: configure
|
|
||||||
image: scemama666/qp2_env
|
|
||||||
commands:
|
|
||||||
- ./configure -i all -c ./config/gfortran_avx.cfg
|
|
||||||
|
|
||||||
- name: compile
|
|
||||||
image: scemama666/qp2_env
|
|
||||||
commands:
|
|
||||||
- bash -c "source quantum_package.rc ; exec ninja"
|
|
||||||
|
|
||||||
- name: testing
|
|
||||||
image: scemama666/qp2_env
|
|
||||||
commands:
|
|
||||||
- bash -c "source quantum_package.rc ; exec qp_test -a"
|
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: drillster/drone-email
|
||||||
|
settings:
|
||||||
|
host:
|
||||||
|
from_secret: hostname # irsamc.ups-tlse.fr
|
||||||
|
from:
|
||||||
|
from_secret: from # drone@irssv7.ups-tlse.fr
|
||||||
|
recipients:
|
||||||
|
from_secret: recipients # scemama@irsamc.ups-tlse.fr
|
||||||
|
when:
|
||||||
|
status: [changed, failure]
|
||||||
|
@ -224,7 +224,7 @@ def write_ezfio(res, filename):
|
|||||||
exponent += [p.expo for p in b.prim]
|
exponent += [p.expo for p in b.prim]
|
||||||
ang_mom.append(str.count(s, "z"))
|
ang_mom.append(str.count(s, "z"))
|
||||||
shell_prim_num.append(len(b.prim))
|
shell_prim_num.append(len(b.prim))
|
||||||
shell_index += [nshell_tot+1] * len(b.prim)
|
shell_index += [nshell_tot] * len(b.prim)
|
||||||
|
|
||||||
# ~#~#~#~#~ #
|
# ~#~#~#~#~ #
|
||||||
# W r i t e #
|
# W r i t e #
|
||||||
|
@ -503,12 +503,11 @@ subroutine save_wavefunction_general(ndet,nstates,psidet,dim_psicoef,psicoef)
|
|||||||
integer :: i,j,k, ndet_qp_edit
|
integer :: i,j,k, ndet_qp_edit
|
||||||
|
|
||||||
if (mpi_master) then
|
if (mpi_master) then
|
||||||
ndet_qp_edit = min(ndet,N_det_qp_edit)
|
|
||||||
|
|
||||||
call ezfio_set_determinants_N_int(N_int)
|
call ezfio_set_determinants_N_int(N_int)
|
||||||
call ezfio_set_determinants_bit_kind(bit_kind)
|
call ezfio_set_determinants_bit_kind(bit_kind)
|
||||||
call ezfio_set_determinants_N_det(ndet)
|
call ezfio_set_determinants_N_det(ndet)
|
||||||
call ezfio_set_determinants_N_det_qp_edit(ndet_qp_edit)
|
call ezfio_set_determinants_N_det_qp_edit(min(ndet,10000))
|
||||||
call ezfio_set_determinants_n_states(nstates)
|
call ezfio_set_determinants_n_states(nstates)
|
||||||
call ezfio_set_determinants_mo_label(mo_label)
|
call ezfio_set_determinants_mo_label(mo_label)
|
||||||
|
|
||||||
|
@ -282,9 +282,7 @@ subroutine i_H_j_two_e(key_i,key_j,Nint,hij)
|
|||||||
double precision :: get_two_e_integral
|
double precision :: get_two_e_integral
|
||||||
integer :: m,n,p,q
|
integer :: m,n,p,q
|
||||||
integer :: i,j,k
|
integer :: i,j,k
|
||||||
integer :: occ(Nint*bit_kind_size,2)
|
|
||||||
double precision :: diag_H_mat_elem, phase,phase_2
|
double precision :: diag_H_mat_elem, phase,phase_2
|
||||||
integer :: n_occ_ab(2)
|
|
||||||
PROVIDE mo_two_e_integrals_in_map mo_integrals_map big_array_exchange_integrals ref_bitmask_two_e_energy
|
PROVIDE mo_two_e_integrals_in_map mo_integrals_map big_array_exchange_integrals ref_bitmask_two_e_energy
|
||||||
|
|
||||||
ASSERT (Nint > 0)
|
ASSERT (Nint > 0)
|
||||||
@ -342,7 +340,6 @@ subroutine i_H_j_two_e(key_i,key_j,Nint,hij)
|
|||||||
case (1)
|
case (1)
|
||||||
call get_single_excitation(key_i,key_j,exc,phase,Nint)
|
call get_single_excitation(key_i,key_j,exc,phase,Nint)
|
||||||
!DIR$ FORCEINLINE
|
!DIR$ FORCEINLINE
|
||||||
call bitstring_to_list_ab(key_i, occ, n_occ_ab, Nint)
|
|
||||||
if (exc(0,1,1) == 1) then
|
if (exc(0,1,1) == 1) then
|
||||||
! Mono alpha
|
! Mono alpha
|
||||||
m = exc(1,1,1)
|
m = exc(1,1,1)
|
||||||
|
Loading…
Reference in New Issue
Block a user