Skip to content

Commit 1c3375e

Browse files
authored
Merge pull request #2 from PyCOMPLETE/release/integrate-GPU
Release/integrate gpu
2 parents 6d5c706 + 2c5bb4e commit 1c3375e

File tree

74 files changed

+17656
-12
lines changed

Some content is hidden

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

74 files changed

+17656
-12
lines changed

Bassetti_Erskine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FFT_OpenBoundary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FFT_OpenBoundary_SquareGrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FFT_PEC_Boundary_SquareGrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FiniteDifferences_ShortleyWeller_SquareGrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FiniteDifferences_ShortleyWeller_SquareGrid_extrapolation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

FiniteDifferences_Staircase_SquareGrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# This file is part of the code:
99
#
1010
#
11-
# PyPIC Version 2.1.0
11+
# PyPIC Version 2.2.0
1212
#
1313
#
1414
# Author and contact: Giovanni IADAROLA

GPU/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.pickle
2+
*.so
3+
*.pyc
4+
.project
5+
.pydevproject
6+
*.png
7+
norepository_*
8+
PyPIC.egg-info
9+
build
10+
.ipynb_checkpoints/

GPU/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
all:
2+
python setup.py build_ext
3+
4+
clean:
5+
rm -r build dist PyPIC.egg-info *.so *.pyc

GPU/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)