development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development...

42
development in wave function methods made easy with IRPF90 and the Quantum Package . Anthony Scemama,& E. Giner, M. Caffarel, T. Applencourt, Y. Garniron 23/03/2016 Lab. Chimie et Physique Quantiques, IRSAMC, UPS/CNRS, Toulouse

Upload: others

Post on 29-Jul-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

development in wave function methods madeeasywith IRPF90 and the Quantum Package

.

Anthony Scemama, &E. Giner, M. Caffarel, T. Applencourt, Y. Garniron23/03/2016

Lab. Chimie et Physique Quantiques, IRSAMC, UPS/CNRS, Toulouse

Page 2: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

issue

• Scientific codes need speed =⇒ : Fortran / C• Low-level languages : difficult to maintain• High-level features of modern Fortran (matmul, arraysyntax, derived types, …) or C++ (objects, STL) can kill theefficiency

We need to hide the code complexity and keep the codeefficient.

2

Page 3: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

issue

A simple solution : use multiple languages.

• High-level : text parsing, global code architecture, …• Low-level : computation• Meta-programming : generate low-level code with ahigher-level language

Problem addressed hereMake code in the low-level language easy to write and maintain

3

Page 4: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

outline

Programming with Implicit Reference to Parameters (IRP)

Motivations

The IRP method

The IRPF90 code generator

Quantum Package

4

Page 5: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

programming with implicit refer-ence to parameters (irp).

Page 6: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

outline

Programming with Implicit Reference to Parameters (IRP)

Motivations

The IRP method

The IRPF90 code generator

6

Page 7: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

what is a scientific code?

A program is a function of its input data:

output = program(input)

A program can be represented as a production tree where

• The root is the output• The leaves are the input data• The nodes are the intermediate variables• The edges represent the relation needs/needed by

7

Page 8: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

what is a scientific code?

Example: Production tree of t(u (d1,d2) , v (u (d3,d4) ,w (d5)))

u(x, y) = x+ y+ 1v(x, y) = x+ y+ 2w(x) = x+ 3

t(x, y) = x+ y+ 4

u1

t

v

d1 d2u2 w

d3 d4 d5

8

Page 9: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

traditional fortran implementation..

program compute_timplicit noneinteger :: d1, d2, d3, d4 d5integer :: u, v, w, t

call read_data(d1,d2,d3,d4,d5) ! t! / \

call compute_u(d3,d4,u) ! u vcall compute_w(d5,w) ! / | | \call compute_v(u,w,v) ! d1 d2 u wcall compute_u(d1,d2,u) ! / \ \call compute_t(u,v,t) ! d3 d4 d5

write(*,*), "t=", tend program

9

Page 10: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

difficulties

Imperative programming (wikipedia)

[…] programming paradigm that uses statements that change aprogram’s state.

• The code expresses the exploration of the production tree• The routines have to be called in the correct order• The values of variables are time-dependent

10

Page 11: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

consequences

Sources of complexity

1. Time-dependence of the data (mutable data)2. Handling the complexity of the production tree

11

Page 12: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

1. time-dependence

Functional programming (wikipedia)

[…] programming paradigm […] that treats computation as theevaluation ofmathematical functions and avoids changing-stateand mutable data.

No time-dependence (immutable data) =⇒ reducedcomplexity

12

Page 13: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

”functional” implementation in fortran..program compute_t ! t

implicit none ! / \integer :: d1, d2, d3, d4 d5 ! u vinteger :: u, v, w, t ! / | | \

! d1 d2 u wcall read_data(d1,d2,d3,d4,d5) ! / \ \

! d3 d4 d5! Functional starts herewrite(*,*), "t=", t( u(d1,d2), v( u(d3,d4), w(d5) ) )

end program

• Instead of telling what to do, we express what we want• The programmer doesn’t handle the execution sequence

No time-dependence left

13

Page 14: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

2. complexity of the production tree

Production tree of Ψ in QMC=Chem: 149 nodes / 689 edges

14

Page 15: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

2. complexity of the production tree

1. The programmers need to have the global knowledge ofthe production tree : Production trees are usually toocomplex to be handled by humans

2. Programmers may not be sure that their modification didnot break some other part

3. Collaborative work is difficult : any user can alter theproduction tree

15

Page 16: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

from global to local knowledge

Express the neededentities for each node:

• t → u1 and v• u1 → d1 and d2• v → u2 and w• u2 → d3 and d4• w → d5

u1

t

v

d1 d2u2 w

d3 d4 d5

The information is now local and easy to handle.

16

Page 17: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

localize information..program compute_t

integer, external :: twrite(*,*), "t=", t()

end program

integer function t()integer, external :: u1, vt = u1() + v() + 4

end

integer function v()integer, external :: u2, wv = u2() + w() + 2

end

integer function w()integer :: d1,d2,d3,d4,d5call read_data(d1,d2,d3,d4,d5)w = d5+3

end

integer function f_u(x,y)integer, intent(in) :: x,yf_u = x+y+1

end

integer function u1()integer :: d1,d2,d3,d4,d5integer, external :: f_ucall read_data(d1,d2,d3,d4,d5)u1 = f_u(d1,d2)

end

integer function u2()integer :: d1,d2,d3,d4,d5integer, external :: f_ucall read_data(d1,d2,d3,d4,d5)u2 = f_u(d3,d4)

end

17

Page 18: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

consequences

• The global production tree is not known by theprogrammer

• The program is easy to write• Any change of dependencies will be handled properlyautomatically

But: The same data will be recomputed multiple times.Simple solution : Lazy evaluation using memo functions.

18

Page 19: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

outline

Programming with Implicit Reference to Parameters (IRP)

Motivations

The IRP method

The IRPF90 code generator

19

Page 20: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

glossary

Entity Node of the production treeBuilder Subroutine that builds a valid value of an entity

from its dependenciesValid Fully initialized with meaningful values

Provider Subroutine with no argument which guarantees toreturn a valid value of an entity

Rules of IRP1

1. Each entity has only one provider2. Before using an entity, its provider has to be called

1François Colonna : ”IRP programming : an efficient way to reduceinter-module coupling ”, DOI: 10.13140/RG.2.1.3833.0406

20

Page 21: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

irp example..

program testuse entitiesimplicit nonecall provide_tprint *, "t=", t

end program

module entities! Entitiesinteger :: u1, u2, v, w, tlogical :: u1_is_built = .False.logical :: u2_is_built = .False.logical :: v_is_built = .False.logical :: w_is_built = .False.logical :: t_is_built = .False.

! Leavesinteger :: d1, d2, d3, d4, d5logical :: d_is_built = .False.

end module

subroutine provide_tuse entitiesimplicit noneif (.not.t_is_built) then

call provide_u1call provide_vcall build_t(u1,v,t)t_is_built = .True.

endifend subroutine provide_t

subroutine build_t(x,y,result)implicit noneinteger, intent(in) :: x, yinteger, intent(out) :: resultresult = x + y + 4

end subroutine build_t

21

Page 22: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

summary

With the IRP method:

1. Code is easy to develop for a new developer : Adding anew feature only requires to know the names of theneeded entities

2. If one developer changes the dependence tree, the otherswill not be affected : collaborative work is simple

3. Forces to write clear code : one builder builds only onething

4. Forces to write efficient code (spatial and temporallocalities are good)

But in real life:

1. A lot more typing is required2. Programmers are lazy

22

Page 23: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

outline

Programming with Implicit Reference to Parameters (IRP)

Motivations

The IRP method

The IRPF90 code generator

23

Page 24: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

irpf90

• Extends Fortran with additional keywords• Fortran code generator (source-to-source compiler)• Writes all the mechanical IRP code

Useful features:• Automatic Makefile generation• Automatic Documentation• Text editor integration• Some Introspection• Meta programming• Some features targeted for HPC

http://irpf90.ups-tlse.frhttps://github.com/scemama/irpf90https://www.gitbook.com/book/scemama/irpf90 24

Page 25: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

irpf90 example

program irp_exampleprint *, 't=', t

end

BEGIN_PROVIDER [ integer, t ]t = u1+v+4

END_PROVIDER

BEGIN_PROVIDER [ integer,w ]w = d5+3

END_PROVIDER

BEGIN_PROVIDER [ integer, v ]v = u2+w+2

END_PROVIDER

BEGIN_PROVIDER [ integer, u1 ]integer :: fuu1 = fu(d1,d2)

END_PROVIDER

BEGIN_PROVIDER [ integer, u2 ]integer :: fuu2 = fu(d3,d4)

END_PROVIDER

integer function fu(x,y)integer, intent(in) :: x,yfu = x+y+1

end function 25

Page 26: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

features : arrays

BEGIN_PROVIDER [ double precision, A, (dim1, 3) ]...

END_PROVIDER

• Allocation of IRP arrays done automatically• Dimensioning variables can be IRP entities, providedbefore the memory allocation

• FREE keyword to force to free memory. Invalidates theentity.

26

Page 27: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

features : documentation

BEGIN_PROVIDER [ double precision, Fock_matrix_beta_mo, &(mo_tot_num_align,mo_tot_num) ]

implicit noneBEGIN_DOC! Fock matrix on the MO basisEND_DOC...END_PROVIDER

$ irpman fock_matrix_beta_mo

27

Page 28: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

features : documentation..IRPF90 entities(l) fock_matrix_beta_mo IRPF90 entities(l)

Declarationdouble precision, allocatable :: fock_matrix_beta_mo (mo_tot_num_align,mo_tot_num)

DescriptionFock matrix on the MO basis

FileFock_matrix.irp.f

Needsao_numfock_matrix_alpha_aomo_coefmo_tot_nummo_tot_num_align

Needed byfock_matrix_mo

IRPF90 entities fock_matrix_beta_mo IRPF90 entities(l)

28

Page 29: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

irpf90 demo

MOVIE

29

Page 30: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

iterative processes

Iterative processes involve cyclic dependencies

TOUCH A : A is valid, but everything that needs A is invalidated.

30

Page 31: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

iterative processes

(a) Everything is valid(b) x is modified(c) x TOUCHed

31

Page 32: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

many other features

• Assert keyword, Templates• Variables can be declared anywhere• +=, -=, *= operators• Dependencies are known by IRPF90 → Makefiles are builtautomatically

• Array alignment, Variable substitution• Codelet generation• TSC Profiler• Thread safety (OpenMP)• Syntax highlighting in Vim• Generation of tags to navigate in the code• No problem using external libraries (MKL, MPI, etc)• …

32

Page 33: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

quantum package.

Page 34: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

quantum package

IRPF90 library for post-HF quantum chemistry

• Open Source (GPL) : contributors arewelcome!

• Hosted on GitHub : https://github.com/LCPQ/quantum_package

• Goal : easy for the programmer• Long term objective : Massively parallelpost-HF

34

Page 35: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

why another quantum package?

• Full-CI : O(N !) (formally)• CAS-CI : Full-CI in a very small space• Complete : easy (integral ↔ determinant) mapping• Integral-driven algorithms : very efficient

Perturbative selection (old idea re-discovered regularly)

1. Don’t explore the complete CI space, but selectdeterminants on-the-fly (CIPSI) with perturbation theory.

2. Use PT2 to estimate the missing part

35

Page 36: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

why another quantum package?

Consequences:

• Much larger spaces can be explored• Selected : difficult (integral ↔ determinant) mapping• Determinant-driven algorithms : less efficient

ButThe drastic reduction of the space makes the selected approachmore efficient

36

Page 37: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

algorithm

1. Start with |Ψ0⟩ = |HF⟩2. ∀{|i⟩} /∈ Ψn but ∈ {TSD|Ψn⟩} , compute ei = ⟨i|H|Ψn⟩2

E(Ψn)−⟨i|H|i⟩

3. if |ei| > ϵn, select |i⟩4. Estimated energy : E(Ψn) + E(PT2)n = E(Ψn) +

∑i ei

5. Ψn+1 = Ψn +∑

i(selected) ci|i⟩6. Minimize E(Ψn+1) (Davidson)7. Choose ϵn+1 < ϵn

8. Go to step 2

37

Page 38: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

generality

• When n → ∞, E(PT2)n=∞ = 0, so the complete CI problemis solved.

• Every CI problem can be solved by iterative perturbativeselection

Perturbatively Selected CI is not a method, but an algorithm. Itcan be applied to

• Full-CI• CISD, CISDT, CISTDQ, …• CAS-CI, MR-CI• …

Implies determinant-driven algorithms =⇒ Requires anEfficient implementation of Slater Rules

38

Page 39: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

applications

Post-Full-CI : QMC/Full-CI (E. Giner, T. Applencourt, M. Caffarel)

0.0 0.1 0.2 0.3 0.4 0.5

1/n [ cc-pCVnZ basis set ]

−76.44

−76.43

−76.42

−76.41

−76.40

−76.39

Energy(a.u)

Full-CI

DMC/CIPSI

Estimated exact

✶TZQZ5Z6Z DZZ

39

Page 40: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

applications

MR-CCSD : (E. Giner, G. David, J.-P. Malrieu)

40

Page 41: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

applications

MR-CEPA, MR-SC2 : (Y. Garniron, E. Giner, J.-P. Malrieu)(Work in progress)

1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0

F—F distance (A)

0.002

0.004

0.006

0.008

0.010

0.012

0.014

0.016

0.018

0.020

E-

E(F

CI)

CAS-CISD

MR-SC2

MR-CCSD

41

Page 42: development in wave function methods made easyirpf90.ups-tlse.fr/files/nancy2016.pdf · development in wave function methods made easy with IRPF90 and the Quantum Package. Anthony

quantum package demo

• C2 Full-CI demo• Simple Hartree-Fock

42