Skip to content

Commit 171e448

Browse files
committed
Update README
1 parent d533eb0 commit 171e448

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

source-code/cython/Numpy/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,19 @@ to `np.sum`.
88

99
## What is it?
1010
1. `array_sum.pyx`: Cython implementation of array element summation.
11+
1. `array_sum_pure.py`: pure Python Cython implementation of array element
12+
summation.
1113
1. `compute_sums.py`: driver script to compare the implementations.
1214
1. `setup.py`: build script.
15+
1. `array_init.pyx`: Cython implementation of the initializatio of a numpy
16+
array.
17+
1. `array_init_pure.pyx`: pure Python Cython implementation of the
18+
initializatio of a numpy array.
19+
1. `init_test.ipynb`: Jupyter notebook illustrating the use of both the
20+
Cython and pure Python Cython implementations.
21+
1. `run_pure_sum.py`: Python script to time the non-compiled version of
22+
the pure Python Cython implementation of the array sum.
23+
1. `run_cythonized_sum.py`: Python script to time the compiled version of
24+
the pure Python Cython implementation of the array sum.
1325
1. `Makefile`: make file for building the cython extension and profiling
1426
the three implementations.

0 commit comments

Comments
 (0)