Skip to content

Commit a7625fd

Browse files
committed
Update licensing information
1 parent 60bc9f2 commit a7625fd

File tree

317 files changed

+1597
-468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+1597
-468
lines changed

COPYING

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
All material Copyright (c) CSC - IT Center for Science Ltd. <www.csc.fi> unless otherwise noted.
2+
3+
All text and image material licensed under Creative Commons BY-NC-SA 4.0 unless
4+
otherwise noted.
5+
6+
All code samples licensed under MIT license unless otherwise noted.
7+
8+
See LICENSES/ and individual file headers for more details.

LICENSE

-30
This file was deleted.

LICENSES/CC-BY-NC-SA-4.0.txt

+170
Large diffs are not rendered by default.

LICENSES/MIT.txt

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
MIT License
2+
3+
Copyright (c) <year> <copyright holders>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6+
associated documentation files (the "Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9+
following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all copies or substantial
12+
portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15+
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18+
USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
# Python in High Performance Computing
28

39
Exercise material and model answers for the CSC course "Python in High Performance Computing". The course is part of PRACE Training activity at CSC.

cython/c-functions/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
## Using C-functions
28

39
Fibonacci numbers are a sequence of integers defined by the recurrence

cython/c-functions/fib.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
def fibonacci(n):
26
if n < 2:
37
return n

cython/c-functions/solution/fib.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
cpdef int fibonacci(int n):
26
if n < 2:
37
return n

cython/c-functions/solution/fib_py.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from functools import lru_cache
26

37
def fibonacci(n):

cython/c-functions/solution/setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from distutils.core import setup, Extension
26
from Cython.Build import cythonize
37

cython/c-functions/solution/test_fib.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from fib import fibonacci
26
from fib_py import fibonacci as fibonacci_py, fibonacci_cached
37
from timeit import repeat

cython/heat-equation/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
## Optimising heat equation with Cython
28

39
### Creating a Cython extension

cython/heat-equation/heat.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import numpy as np
26
import matplotlib
37
matplotlib.use('Agg')

cython/heat-equation/heat_main.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from __future__ import print_function
26
import time
37
import argparse

cython/heat-equation/profile.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
## Example profile for heat equation solver
28

39
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
# cython: profile=True
6+
7+
import numpy as np
8+
cimport numpy as cnp
9+
10+
import cython
11+
12+
@cython.boundscheck(False)
13+
@cython.wraparound(False)
14+
@cython.cdivision(True)
15+
cdef laplacian(cnp.ndarray[cnp.double_t, ndim=2]u, cnp.ndarray[cnp.double_t, ndim=2]du, double dx2, double dy2):
16+
17+
cdef int n = u.shape[0]
18+
cdef int m = u.shape[1]
19+
20+
cdef int i,j
21+
22+
# Multiplication is more efficient than division
23+
cdef double dx2inv = 1. / dx2
24+
cdef double dy2inv = 1. / dy2
25+
26+
for i in range(1, n-1):
27+
for j in range(1, m-1):
28+
du[i, j] = (u[i+1, j] - 2*u[i, j] + u[i-1, j]) * dx2inv + \
29+
(u[i, j+1] - 2*u[i, j] + u[i, j-1]) * dy2inv
30+
31+
32+
33+
@cython.boundscheck(False)
34+
@cython.wraparound(False)
35+
@cython.cdivision(True)
36+
def evolve(cnp.ndarray[cnp.double_t, ndim=2]u,
37+
cnp.ndarray[cnp.double_t, ndim=2]u_previous,
38+
double a, double dt, double dx2, double dy2):
39+
"""Explicit time evolution.
40+
u: new temperature field
41+
u_previous: previous field
42+
a: diffusion constant
43+
dt: time step. """
44+
45+
laplacian(u_previous, u, dx2, dy2)
46+
# u *= a * dt
47+
u = u_previous + a*dt * u
48+
49+
u_previous[:] = u[:]
50+
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
import numpy as np
6+
from numba import jit, void, double
7+
8+
# @jit(void(double[:,:], double[:,:], double, double, double, double), nopython=True, cache=True, fastmath=True, error_model='numpy')
9+
# @jit(nopython=True, cache=True, fastmath=True)
10+
@jit(nopython=True)
11+
def evolve(u, u_previous, a, dt, dx2, dy2):
12+
"""Explicit time evolution.
13+
u: new temperature field
14+
u_previous: previous field
15+
a: diffusion constant
16+
dt: time step. """
17+
18+
n, m = u.shape
19+
20+
# dx2inv = 1.0 / dx2
21+
# dy2inv = 1.0 / dy2
22+
for i in range(1, n-1):
23+
for j in range(1, m-1):
24+
u[i, j] = u_previous[i, j] + a * dt * ( \
25+
(u_previous[i+1, j] - 2*u_previous[i, j] + \
26+
u_previous[i-1, j]) / dx2 + \
27+
# u_previous[i-1, j]) * dx2inv + \
28+
(u_previous[i, j+1] - 2*u_previous[i, j] + \
29+
u_previous[i, j-1]) / dy2 )
30+
# u_previous[i, j-1]) * dy2inv )
31+
u_previous[:] = u[:]
32+

cython/heat-equation/solution/heat.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import numpy as np
26
cimport numpy as cnp
37
import cython

cython/heat-equation/solution/heat_main.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from __future__ import print_function
26
import time
37
import argparse

cython/heat-equation/solution/setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from distutils.core import setup, Extension
26
from Cython.Build import cythonize
37

cython/simple-extension/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
## Simple Cython extension
28

39
### Creating a Cython extension
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
def subtract(x, y):
26
result = x - y
37
return result

cython/simple-extension/solution/setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from distutils.core import setup, Extension
26
from Cython.Build import cythonize
37

cython/static-typing/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
3+
4+
SPDX-License-Identifier: CC-BY-NC-SA-4.0
5+
-->
6+
17
## Using static typing
28

39
Continue with the simple Cython module for subtracting two numbers:

cython/static-typing/cyt_module.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
def subtract(x, y):
26
result = x - y
37
return result

cython/static-typing/setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from distutils.core import setup, Extension
26
from Cython.Build import cythonize
37

cython/static-typing/solution/cyt_module.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
def subtract(int x, int y):
26
cdef int result
37
result = x - y

cython/static-typing/solution/setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from distutils.core import setup, Extension
26
from Cython.Build import cythonize
37

demos/broadcasting.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import numpy as np
26

37
a1 = np.random.random((10,3))

demos/cython/mandel.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37

demos/cython/mandel_cyt.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37
cimport numpy as cnp

demos/cython/mandel_cyt_1.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37

demos/cython/mandel_cyt_2.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37

demos/cython/mandel_cyt_3.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37
cimport numpy as cnp

demos/cython/mandel_cyt_4.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37
cimport numpy as cnp

demos/cython/mandel_cyt_5.pyx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 CSC - IT Center for Science Ltd. <www.csc.fi>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from time import time
26
import numpy as np
37
cimport numpy as cnp

0 commit comments

Comments
 (0)