I am trying to write a wrapper for twpbvpc (ODE BVP with remeshing) Fortran-77 solver. Solver needs input function with signature
subroutine fsub(ncomp, x, u, f, rpar, ipar)
Where
ncomp is an integer (vector length),x (in) is a float,u(in) is the length vector ncomp,f (out) is the place for the result, the length vector ncomprparand ipar- arrays of float and integer external parameters; Closing Julia would be a more preferable way, but apparently there are difficulties with it (see the blog post ). But for a moment they can be ignored.
In Julia, to write fsub, I usually used a signature
function fsub_julia(x :: Float64, y :: Vector{Float64}, dy :: Vector{Float64})
dy[1] = ...
dy[2] = ...
...
end
ncomp , length size (, Julia Fortran? , ncomp , ).
, twpbvpc, :
function fsub_par(n :: Int64, x :: Float64, y :: Vector{Float64}, dy :: Vector{Float64}, rpar :: Vector{Float64}, ipar :: Vector{Float64})
fsub_julia(x, y, dy)
end
, Fortran, , cfunction, . , ?
:
cf_fsub = cfunction(fsub_par, Void, (Ref{Int64}, Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Float64}, Ref{Int64}))
Fortran :
ERROR: LoadError: MethodError: no method matching (::TWPBVP.
Closest candidates are:
fsub_par(::Int64, ::Float64, !Matched::Array{Float64,1}, !Matched::Array{Float64,1}, !Matched::Array{Float64,1}, !Matched::Array{Float64,1})
, - ...
Ref{Float64} Ref{Array{Float64,1}} ( , ...):
cf_fsub = cfunction(fsub_par, Void, (Ref{Int64}, Ref{Float64}, Ref{Array{Float64,1}}, Ref{Array{Float64,1}}, Ref{Array{Float64,1}}, Ref{Array{Int64,1}}))
, fsub_par (cf_fsub) Fortran ( , ).
Ref{Float54} Ptr{Float64} .
, Fortran, - , fsub:
call fsub (ncomp, xx(1), u(1,1), fval(1,1),rpar,ipar)
u fval :
dimension xx(nmsh), u(nudim,nmsh), fval(ncomp,nmsh)
, , , Fortran , u(1,1) ( Fortran, Julia, ).
? fsub_julia, ( ODEInterface.jl )?
Update
, ODEInterface.jl Julia void* -thunk parameters C, :
immutable TWPBVPCProblem
fsub :: Function
dfsub :: Function
gsub :: Function
dgsub :: Function
end
function unsafe_fsub(rn :: Ref{Int64}, rx :: Ref{Float64}, py :: Ptr{Float64}, pdy :: Ptr{Float64}, rpar :: Ptr{Float64}, ipar :: Ptr{Int64}) :: Void
x = rx[]
n = rn[]
y = unsafe_wrap(Array, py, n)
dy = unsafe_wrap(Array, pdy, n)
problem = unsafe_pointer_to_objref(rpar) :: TWPBVPCProblem
problem.fsub(x, y, dy)
return nothing
end
const fsub_ptr = cfunction(unsafe_fsub, Void, (Ref{Int64}, Ref{Float64}, Ptr{Float64}, Ptr{Float64}, Ptr{Float64}, Ptr{Int64}))
, ( ):
function twpbvpc(nlbc :: Int64,
aleft :: Float64, aright :: Float64,
fixpnt :: Nullable{Vector{Float64}},
ltol :: Vector{Int64}, tol :: Vector{Float64},
linear :: Bool, givmsh :: Bool, giveu :: Bool, nmsh :: Ref{Int64},
xx :: Vector{Float64}, u :: Array{Float64, 2}, nmax :: Ref{Int64},
wrk :: Vector{Float64}, iwrk :: Vector{Int64},
fsub :: Function, dfsub :: Function,
gsub :: Function, dgsub :: Function,
ckappa1 :: Ref{Float64}, gamma1 :: Ref{Float64},
ckappa :: Ref{Float64},
iflbvp :: Ref{Int64})
rpar = TWPBVPCProblem(fsub, dfsub, gsub, dgsub)
local ipar :: Vector{Int64} = [0]
ncomp, nucol = size(u)
nxxdim = length(xx)
assert(nucol == nxxdim)
lwrkfl = length(wrk)
lwrkin = length(iwrk)
if isnull(fixpnt)
nfxpnt = 0
fixpnt_v = [0.0]
else
fixpnt_v = get(fixpnt)
nfxpnt = length(fixpnt_v)
end
ntol = length(ltol)
ccall((:twpbvpc_, libtwpbvpc), Void,
(Ref{Int64}, Ref{Int64},
Ref{Float64}, Ref{Float64},
Ref{Int64}, Ptr{Float64},
Ref{Int64}, Ptr{Int64}, Ptr{Float64},
Ref{Int64}, Ref{Int64}, Ref{Int64},
Ref{Int64}, Ref{Int64},
Ptr{Float64}, Ref{Int64},
Ptr{Float64}, Ref{Int64},
Ref{Int64}, Ptr{Float64},
Ref{Int64}, Ptr{Int64},
Ptr{Void}, Ptr{Void}, Ptr{Void}, Ptr{Void},
Ref{Float64}, Ref{Float64},
Ref{Float64}, Any, Ptr{Int64},
Ref{Int64}),
ncomp, nlbc, aleft, aright,
nfxpnt, fixpnt_v, ntol, ltol, tol,
linear, givmsh, giveu, nmsh,
nxxdim, xx, nucol, u, nmax,
lwrkfl, wrk, lwrkin, iwrk,
fsub_ptr, dfsub_ptr, gsub_ptr, dgsub_ptr,
ckappa1,gamma1,ckappa,pointer_from_objref(rpar),ipar,iflbvp)
end
twpbvpc ( ):
subroutine twpbvpc(ncomp, nlbc, aleft, aright,
* nfxpnt, fixpnt, ntol, ltol, tol,
* linear, givmsh, giveu, nmsh,
* nxxdim, xx, nudim, u, nmax,
* lwrkfl, wrk, lwrkin, iwrk,
* fsub, dfsub, gsub, dgsub,
* ckappa1,gamma1,ckappa,rpar,ipar,iflbvp)
implicit double precision (a-h,o-z)
dimension rpar(*),ipar(*)
dimension fixpnt(*), ltol(*), tol(*)
dimension xx(*), u(nudim,*)
dimension wrk(lwrkfl), iwrk(lwrkin)
logical linear, givmsh, giveu
external fsub, dfsub, gsub, dgsub
logical pdebug, use_c, comp_c
common/algprs/ nminit, pdebug, iprint, idum, uval0, use_c, comp_c
...
Fortran build.jl:
cd(joinpath(Pkg.dir("TWPBVP"), "deps"))
pic = @windows ? "" : "-fPIC"
run(`gfortran -m$WORD_SIZE -fdefault-real-8 -fdefault-integer-8 -ffixed-form $pic -shared -O3 -o libtwpbvpc.so twpbvpc.f`)
, rpar Any ( Ptr{Void}): Fortran , .
, ( Pkg.test("TWPBVP")):
signal (11): Segmentation fault
while loading /home/alexey/.julia/v0.5/TWPBVP/test/runtests.jl, in expression starting on line 58
unknown function (ip: 0xffffffffffffffff)
Allocations: 1400208 (Pool: 1399373; Big: 835); GC: 0
, github: https://github.com/mobius-eng/TWPBVP.jl