Skip to content

Commit cda9206

Browse files
jmarkJohannes MarkertJoshuaLampert
authored
Catch up with t8code 2.0.0 release. (#64)
* Weakly build. * Upgrading. * Upgrade to t8code 2.1.0. * Updated Libt8.jl * Bumped to t8code version 2.0.0. * Compiling interface description. * Fixing typo. * Update Project.toml Co-authored-by: Joshua Lampert <[email protected]> * Removing unnecessary include. * Update src/Libt8.jl Co-authored-by: Joshua Lampert <[email protected]> * Update src/Libt8.jl --------- Co-authored-by: Johannes Markert <[email protected]> Co-authored-by: Joshua Lampert <[email protected]>
1 parent 1f69af4 commit cda9206

File tree

5 files changed

+2862
-1555
lines changed

5 files changed

+2862
-1555
lines changed

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "T8code"
22
uuid = "d0cc0030-9a40-4274-8435-baadcfd54fa1"
33
authors = ["Johannes Markert <[email protected]>"]
4-
version = "0.5.4"
4+
version = "0.6.0"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -22,4 +22,4 @@ Preferences = "1.2"
2222
Reexport = "0.2, 1.0"
2323
UUIDs = "1"
2424
julia = "1.6"
25-
t8code_jll = "=1.6.1"
25+
t8code_jll = "=2.0.0"

dev/Artifacts.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[[t8code]]
22
arch = "x86_64"
3-
git-tree-sha1 = "a688a61da42b4eb2d73ba45ad5edb09bc45a6039"
3+
git-tree-sha1 = "949a37adddb13d16a4bee2acb0e4ed5e185470ed"
44
lazy = true
55
libc = "glibc"
66
mpi = "mpich"
77
os = "linux"
88

99
[[t8code.download]]
10-
sha256 = "49c53718a2482307d27151782ef15c3acce59ef2b8e7a5e5ff79927fb550d4a9"
11-
url = "https://github.com/JuliaBinaryWrappers/t8code_jll.jl/releases/download/t8code-v1.6.1+1/t8code.v1.6.1.x86_64-linux-gnu-mpi+mpich.tar.gz"
10+
sha256 = "02effe7949703a11a0754c44a4b0a20c6b693f69209076380a31cbad68c02181"
11+
url = "https://github.com/JuliaBinaryWrappers/t8code_jll.jl/releases/download/t8code-v2.0.0+0/t8code.v2.0.0.x86_64-linux-gnu-mpi+mpich.tar.gz"

dev/fixes.sh

+6
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ sed -i "/MPI_ERR_GROUP/d" "${LIB_JL}"
9090

9191
sed -i "/SC_VERSION_POINT/d" "${LIB_JL}"
9292

93+
sed -i "/sc_MPI_PACKED/d" "${LIB_JL}"
94+
sed -i "/sc_MPI_Pack/d" "${LIB_JL}"
95+
sed -i "/sc_MPI_Unpack/d" "${LIB_JL}"
96+
9397
sed -i "/= MPI_MODE_/d" "${LIB_JL}"
9498
sed -i "/= MPI_SEEK_/d" "${LIB_JL}"
9599
sed -i "/= MPI_ERR_/d" "${LIB_JL}"
@@ -99,3 +103,5 @@ sed -i "/= MPI_Offset/d" "${LIB_JL}"
99103
sed -i "/= MPI_File_/d" "${LIB_JL}"
100104

101105
sed -i "s/= MPI_/= MPI./" "${LIB_JL}"
106+
107+
sed -i "s/packageid/package_id/" "${LIB_JL}"

dev/prologue.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ end
3232
const ptrdiff_t = Cptrdiff_t
3333

3434
# Definitions used from MPI.jl
35-
using MPI: MPI, MPI_Datatype, MPI_Comm, MPI_Group, MPI_File
35+
using MPI: MPI, MPI_Datatype, MPI_Comm, MPI_File
3636

3737
const MPI_COMM_WORLD = MPI.COMM_WORLD
3838
const MPI_COMM_SELF = MPI.COMM_SELF

0 commit comments

Comments
 (0)