mirror of https://github.com/fredrikekre/HYPRE.jl
Julia interface to hypre linear solvers (https://github.com/hypre-space/hypre)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
336 B
17 lines
336 B
########################### |
|
## Start gen/prologue.jl ## |
|
########################### |
|
|
|
using MPI: MPI, MPI_Comm |
|
|
|
if isdefined(MPI, :API) |
|
# MPI >= 0.20.0 |
|
using MPI.API: MPI_INT, MPI_DOUBLE |
|
else |
|
# MPI < 0.20.0 |
|
using MPI: MPI_INT, MPI_DOUBLE |
|
end |
|
|
|
######################### |
|
## End gen/prologue.jl ## |
|
#########################
|
|
|