Skip to content

Commit 943bdf5

Browse files
authored
Merge pull request #18 from gjbex/development
Add notebook on Julia Set and numba
2 parents 7a95c7d + e1c4f8e commit 943bdf5

File tree

116 files changed

+1125
-237
lines changed

Some content is hidden

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

116 files changed

+1125
-237
lines changed

python_for_hpc.pptx

-16 Bytes
Binary file not shown.

source-code/README.md

Lines changed: 1 addition & 1 deletion

source-code/cython/Classes/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
2-
POINTS_LIB = points.$(VERSION).so
3-
POINTS_PURE_LIB = points_pure.$(VERSION).so
1+
VERSION = $(shell python3-config --extension-suffix)
2+
POINTS_LIB = points$(VERSION)
3+
POINTS_PURE_LIB = points_pure$(VERSION)
44

55
all: $(POINTS_LIB)
66

source-code/cython/Exceptions/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
2-
AVERAGE_LIB = average.$(VERSION).so
3-
AVERAGE_PURE_LIB = average_pure.$(VERSION).so
1+
VERSION = $(shell python3-config --extension-suffix)
2+
AVERAGE_LIB = average$(VERSION)
3+
AVERAGE_PURE_LIB = average_pure$(VERSION)
44

55
all: $(AVERAGE_LIB) $(AVERAGE_PURE_LIB)
66

source-code/cython/HelloWorld/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
1+
VERSION = $(sheel python3-config --extension-suffix)
22
HELLO_WORLD_LIB = hello_world.$(VERSION).so
33

44
all: $(HELLO_WORLD_LIB)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.c

source-code/cython/Numpy/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
1+
VERSION = $(shell python3-config --extension-suffix)
22
ARRAY_SUM_LIB = array_sum.$(VERSION).so
33
ARRAY_INIT_LIB = array_init.$(VERSION).so
44
ARRAY_SUM_PURE_LIB = array_sum_pure.$(VERSION).so

source-code/cython/Pi/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ $(LIB_FILES): $(PYX_FILES)
99

1010
clean:
1111
python setup.py clean
12-
rm -f $(C_FILES) $(LIB_FILES)
12+
$(RM) $(C_FILES) $(LIB_FILES)

source-code/cython/Pointers/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
1+
VERSION = $(shell python3-config --extension-suffix)
22
CYTHON_LIB = pointers_cython.$(VERSION).so
33
PURE_LIB = pointers_pure.$(VERSION).so
44

source-code/cython/Primes/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = cpython-311-x86_64-linux-gnu
1+
VERSION = $(shell python3-config --extension-suffix)
22
PRIMES_LIBS = primes_cython.$(VERSION).so primes_cython3.$(VERSION).so \
33
primes_pure_python.$(VERSION).so primes_pure_malloc.$(VERSION).so \
44
primes_malloc.$(VERSION).so

0 commit comments

Comments
 (0)