我可以调用编译此fortran代码' test.f90'
subroutine test(g,o)
double precision, intent(in):: g
double precision, intent(out):: o
o=g*g
end subroutine
与
gfortran -shared -fPIC test.f90 -o test.so
为Julia创建这个包装函数test.jl:
function test(s)
res=Float64[1]
ccall((:test_, "./test.so"), Ptr{Float64}, (Ptr{Float64}, Ptr{Float64}), &s,res);
return res[1]
end
并使用所寻求的输出运行这些命令:
julia> include("./test.jl")
julia> test(3.4)
11.559999999999999
但我想返回一个数组而不是一个标量。我想我在this回答中尝试了各种方法,包括使用iso_c_binding。但是我尝试的一切都让我看起来像是这样的错误:
ERROR: MethodError: `convert` has no method matching convert(::Type{Ptr{Array{Int32,2}}}, ::Array{Int32,2})
This may have arisen from a call to the constructor Ptr{Array{Int32,2}}(...),
since type constructors fall back to convert methods.
Closest candidates are:
call{T}(::Type{T}, ::Any)
convert{T}(::Type{Ptr{T}}, ::UInt64)
convert{T}(::Type{Ptr{T}}, ::Int64)
...
[inlined code] from ./deprecated.jl:417
in unsafe_convert at ./no file:429496729
例如,我想从julia调用以下代码:
subroutine arr(array) ! or arr(n,array)
implicit none
integer*8, intent(inout) :: array(:,:)
!integer*8, intent(in) :: n
!integer*8, intent(out) :: array(n,n)
integer :: i, j
do i=1,size(array,2) !n
do j=1,size(array,1) !n
array(i,j)= j+i
enddo
enddo
end subroutine
使用已注释的变体也是另一种选择,因为在从julia调用时,仅更改参数似乎并不有用。
那么如何使用Julia的数组调用fortran子程序?
答案 0 :(得分:4)
使用Vue.nextTick(function() { $('#upc').focus(); });
时,Julia数组应该作为元素类型的指针传递,并附加一个描述大小的参数。
您的示例ccall
应为:
test.f90
像以前一样编译
subroutine arr(n,array)
implicit none
integer*8, intent(in) :: n
integer*8, intent(out) :: array(n,n)
integer :: i, j
do i=1,size(array,2) !n
do j=1,size(array,1) !n
array(i,j)= j+i
enddo
enddo
end subroutine
然后在朱莉娅:
gfortran -shared -fPIC test.f90 -o test.so
答案 1 :(得分:0)
建议: '&n'将导致较新版本的无效语法错误。 而且,使用Ref比Ptr更安全。
您可以尝试:
ccall((:arr_, "./test.so"), Cvoid, (Ref{Int64}, Ref{Int64}), Ref(n), X)