introduction to scientific software deployment and development · 2016-10-20 · 5 1. programming...

42
1 Introduction to Scientific Software Deployment and Development [email protected] October 2016 http://www.ceci-hpc.be/training.html

Upload: others

Post on 22-Jul-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

1

Introduction to Scientific SoftwareDeployment and Development

[email protected] 2016

http://www.ceci-hpc.be/training.html

Page 2: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

2

What is this?

https://xebialabs.com/periodic-table-of-devops-tools/

http://www.cism.ucl.ac.be/training

Page 3: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

3

Goal of this session:

“Give you access to the same toolsthe professionals are using

for developing and deploying programs.”

http://www.cism.ucl.ac.be/training

Page 4: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

4

Dev's toolkit :

1. Programming languages

2. Good practices / Code Style Guides

3. Text editor

4. Source control management

5. Debuggers / Profilers

6. Databases

7. Packaging / Distributing tools

8. Comments and documentation

9. Tests

10.Licensing

Page 5: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

5

1. Programming language

● Good reasons for choosing language X:

– it offers useful paradigms for your problem

– it offers high-level constructs/tools - e.g. for parsing arguments

– it offers (directly or indirectly) useful libraries - e.g. for linear algebra

● Ok reasons for choosing language X:

– standard in your community – easier to get accepted

● Bad reasons for choosing language X:

– it runs fast – probably needs high skills

– it is the language you already know – screwing with a hammer?

Page 6: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

6

A word about paradigms

Imperative – “Do this”BASIC, Assembly

Declarative – “I need this”SQL

Structured – Subroutines, scopesC, FORTRAN77

algorithms + data : good for explicit computing

Functional – Pure functions, lazy evaluationHaskell, Scala

functions o functions : good for reasoning

Object-Oriented – Encapsulation, Inheritance, ...C++, Python

objects + messages : good for modeling

Logic – Predicates and rulesProlog, Datalog

facts + rules : good for searching

Page 7: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

7

ex.: Haskell

HaskellC

Purely functionalStatic strong typing

Lazy evaluation

Page 8: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

8

Haskell

http://shuklan.com/haskell/

Page 9: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

9

Haskell

http://shuklan.com/haskell/

And types can be used to model dimensionalnumbers (units) or include semantic (e.g.Temperature, Velocity, which will not addtogether for instance)

Page 10: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

10

Haskell

http://shuklan.com/haskell/

Page 11: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

11

2. Good practices and style

● Write for humans, not for computers

● Organize for change, and make incremental changes

● Plan for mistakes, automate testing

● Automate repetitive tasks

● Write a script rather than a compiled program

● Use modern source-code management system

● Use the appropriate language(s)

● Document the design and purpose, not the implementation

● Optimize only when it works already

Page 12: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

12

Good practices - good reads

Paul F. Dubois. 1999. Ten Good Practices in Scientific Programming. Computing inScience and Engg. 1, 1 (January 1999), 7-11. DOI=10.1109/MCISE.1999.743610http://dx.doi.org/10.1109/MCISE.1999.743610

Wilson G, Aruliah DA, Brown CT, Chue Hong NP, Davis M, Guy RT, et al. (2014) BestPractices for Scientific Computing. PLoS Biol 12(1): e1001745.doi:10.1371/journal.pbio.1001745

Dubois PF, Epperly T, Kumfert G (2003) Why Johnny can't build (portable scientificsoftware). Comput Sci Eng 5: 83–88. doi: 10.1109/mcise.2003.1225867

Prlić A, Procter JB (2012) Ten Simple Rules for the Open Development of ScientificSoftware. PLoS Comput Biol 8(12): e1002802. doi:10.1371/journal.pcbi.1002802

Victor R. Basili, Jeffrey C. Carver, Daniela Cruzes, Lorin M. Hochstein, Jeffrey K.Hollingsworth, Forrest Shull, Marvin V. Zelkowitz, "Understanding the High-Performance-Computing Community: A Software Engineer's Perspective," IEEESoftware, vol. 25, no. 4, pp. 29-36, July/August, 2008

Page 13: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

13

Good coding principles

● Don't repeat yourself (DRY)

● Keep it simple, Stupid (KISS)

● One level of abstraction

● Single responsibility principle

● Separation of concern

● Avoid premature optimization

● Many others...

Clean Code: A Handbook of Agile Software Craftsmanship, R. C. Martin, Prentice Hall, 2008

Page 14: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

14

Coding style

● Makes sure the code isreadable by all

– easily

– quickly● Depends on

– the language

– the project

vs

Page 15: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

15

Coding style

https://github.com/SalGnt/cscs

Page 16: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

16

3. Text editor

● Many editors with time-saving features

– Sublime text: http://www.sublimetext.com/

– Notepad++: https://notepad-plus-plus.org/

– Text Wrangler: http://www.barebones.com/

– Textmate: https://macromates.com/

– Atom: https://atom.io/● Choose one and learn it from inside out

● And also learn a text-UI editor:

– Vim or Emacs or Nano

Page 17: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

17

Dev's toolkit :

1. Programming language

2. Good practices / Code Style Guides

3. Text editor / IDE

4. Source control management

5. Debuggers / Profilers

6. Databases

7. Packaging / Distributing tools

8. Comments and documentation

9. Tests

10.Licensing

Own dedicated sessions

Page 18: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

18

7. Packaging Fortran/C/C++ code

https://cmake.org/ , https://en.wikipedia.org/wiki/GNU_build_system

Page 19: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

19

8. Comments / Documentation

Lots of useless comments Less comments but useful comments

Write doc in a lightweight markup language (Markdown, rst, etc.)

Page 20: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

20

9. Tests - TDD

http://dx.doi.org/10.1016/j.infsof.2014.05.006

Page 21: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

21

Code - Comments - Test/doc

Tests* show the WHAT

Code shows the HOW

Comments show the WHY

*and doc that should incorporate functional tests as examples

Page 22: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

22

10. Licensing your code: Why?

● Commercial reason :

– you want to make money out of it – forbid distribution

– forbid reverse engineering

● Scientific reason :

– you want to it to be used and get citations

– you need to allow usage, and/or modification, etc.

– you require others to cite your work– you want to protect yourself from liability claims

Page 23: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

23

10. Licensing your code: How?

● Choose a license type, e.g.

– Apache License 2.0

– BSD 3-Clause "New" or "Revised" license

– BSD 2-Clause "Simplified" or "FreeBSD" license

– GNU General Public License (GPL)

– GNU Library or "Lesser" General Public License (LGPL)

– MIT license

– Mozilla Public License 2.0

– Common Development and Distribution License

– Eclipse Public License

● Copy/adapt the text

● Distribute a LICENSE file with your code

Page 24: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

24

MIT license

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentationfiles (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULARPURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BELIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORTOR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHERDEALINGS IN THE SOFTWARE.

Page 25: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

25

Other popular licenses

BSD

GPL

Reproduced from https://tldrlegal.com

Page 26: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

26

Ops' toolkit :

1. Virtualization platforms

2. Multi-host connexions

3. Configuration management

4. Installing

5. Automatic build tests

6. Monitoring

Page 27: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

27

1. Virtualization

● Install on your laptop an environment similar to that of thecluster to test your workflow

● With

– VirtualBox: https://www.virtualbox.org/

– Vagrant: https://www.vagrantup.com/● you can build a virtual cluster in one command:

“vagrant up”

Page 28: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

28

1. Virtualization

Page 29: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

29

2. Multi-host SSH

https://code.google.com/p/pdsh/, http://www.ansible.com/

Page 30: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

30

3. Configuration Management

Page 31: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

31

3. Configuration Management

Page 32: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

32

3. Configuration Management

Page 33: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

33

4. Easy installing

Page 34: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

34

4. Easy installing

Page 35: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

35

Packaging compiled code

http://www.pgbovine.net/cde.html

Page 36: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

36

5. Automatic build tests

Page 37: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

37

6. Monitoring

multitail -q 2 "**/res"

Useful with command 'screen'

Page 38: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

38

6. Monitoring

Useful with command 'screen'

Page 39: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

39

Dev's toolkit :

1. Programming language

2. Good practices / Code Style Guides

3. Text editor / IDE

4. Source control management

5. Debuggers / Profilers

6. Databases

7. Packaging / Distributing tools

8. Comments and documentation

9. Tests

10.Licensing

Page 40: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

40

Ops' toolkit :

1. Virtualization platforms (Virtual box, Vagrant)

2. Multi-host connexions (pdsh)

3. Configuration management/ (ansible)

4. Installing (easybuild)

5. Automatic build tests (jenkins)

6. Monitoring (multitail)

Page 41: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

41

The 'Phillip' test

● 12 simple questions

● ordered by 'difficulty'

● measures quality of organization

● for research programming

If you do not score at least a 7there is room for improvementusing the tools presented here

http://pgbovine.net/research-programming-workflow.htm

Page 42: Introduction to Scientific Software Deployment and Development · 2016-10-20 · 5 1. Programming language Good reasons for choosing language X: – it offers useful paradigms for

42

Work quicker & more reliably