Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ab00218
Add pybind11 as a submodule
d7919 Feb 6, 2019
03c1ed2
Add pybind11 setup to configure
d7919 Feb 6, 2019
bded50f
Ensure building unit tests only fetches required submodules rather th…
d7919 Feb 6, 2019
33c4c55
Add the required extra python headers to EXTRA_INCS
d7919 Feb 6, 2019
2422873
Make links to the pybind11 headers in include
d7919 Feb 6, 2019
331c1f6
Provide full set of flags needed to link a program using python through
d7919 Feb 6, 2019
b1d4c42
Adding simple example demonstrating the use of pybind11 for calling
d7919 Feb 6, 2019
d11fbed
Require active enabling of pybind11
d7919 Feb 6, 2019
c6007bc
Restore missing define line from configure
d7919 Feb 6, 2019
0b9f2fa
Show use of python module in example
d7919 Feb 6, 2019
bf289ec
Add a demo of using, accessing and modifying a numpy array
d7919 Feb 6, 2019
e882ae4
Add a helper for getting values from python to C++
d7919 Feb 7, 2019
1742a86
Add an example of getting access to members of a numpy array in a loop
d7919 Feb 7, 2019
e08f5a8
Demo an nd-Array and how to find the shape
d7919 Feb 7, 2019
98d9d78
Start to add a python based field generator with example
d7919 Feb 7, 2019
cf8f5cc
Revert "Start to add a python based field generator with example"
d7919 Feb 8, 2019
2fb7615
Merge remote-tracking branch 'refs/remotes/origin/next' into pybind_e…
d7919 May 22, 2019
ea4f1f4
Bugfix for pybind11 example
d7919 May 22, 2019
2672e52
Add plotting to pybind11 example.
d7919 May 22, 2019
ae7d52e
Correct the googletest version
d7919 May 22, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ bout-coverage/
src/.libfast
.*.mk
*.mo
include/pybind11
.BOUT.pid.*
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
[submodule "externalpackages/git-archive-all.sh"]
path = externalpackages/git-archive-all.sh
url = https://github.com/meitar/git-archive-all.sh/
[submodule "externalpackages/pybind11"]
path = externalpackages/pybind11
url = https://github.com/pybind/pybind11.git
[submodule "mpark.variant"]
path = externalpackages/mpark.variant
url = https://github.com/mpark/variant.git
Loading