- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个大致类似的 Fortran 链表
type :: node
type(node), pointer :: next => null()
integer :: value
end type node
理想情况下,我希望使用 Cpython 与之交互。我使用 f2py 程序创建共享对象时,经常将 fortran 子例程与 python 结合使用。但是,f2py 不能与派生类型一起使用。
我的问题很简单,是否可以使用 cpython 访问 Fortran 中的链表之类的东西。我想我需要遵循从 fortran 到 c 到 cpython 的路线。但是,我读过要使 fortran 派生类型与 c 互操作,“每个组件都必须具有可互操作的类型和类型参数,不能是指针,也不能是可分配的。”同样,帖子 c-fortran interoperability - derived types with pointers似乎证实了这一点。
我想知道是否有人知道是否绝对不可能从 cpython 访问 fortran 中的链表。如果可能的话,即使是间接或迂回的方式,我也很乐意听到更多信息。
谢谢你标记
最佳答案
正如 Bálint Aradi 在评论中提到的那样,该节点在当前形式下无法与 C 互操作。为此,您需要将 Fortran 指针更改为 C 指针,但这使得在 Fortran 内部使用变得非常痛苦。我能想出的最优雅的解决方案是将 C 互操作类型放入一个 fortran 类型中,并保存不同版本的 C 和 fortran 指针。
实现如下所示,其中我还定义了在 Fortran 内部使用的便利函数,用于分配、取消分配和初始化节点。
module node_mod
use, intrinsic :: iso_c_binding
implicit none
! the C interoperable type
type, bind(c) :: cnode
type(c_ptr) :: self = c_null_ptr
type(c_ptr) :: next = c_null_ptr
integer(c_int) :: value
end type cnode
! the type used for work in fortran
type :: fnode
type(cnode) :: c
type(fnode), pointer :: next => null()
end type fnode
contains
recursive function allocate_nodes(n, v) result(node)
integer, intent(in) :: n
integer, optional, intent(in) :: v
type(fnode), pointer :: node
integer :: val
allocate(node)
if (present(v)) then
val = v
else
val = 1
end if
node%c%value = val
if (n > 1) then
node%next => allocate_nodes(n-1, val+1)
end if
end function allocate_nodes
recursive subroutine deallocate_nodes(node)
type(fnode), pointer, intent(inout) :: node
if (associated(node%next)) then
call deallocate_nodes(node%next)
end if
deallocate(node)
end subroutine deallocate_nodes
end module node_mod
如您所见,访问“值”元素需要一个额外的“%c”,这有点麻烦。要使用 python 中先前定义的例程来检索链表,必须定义 C 可互操作包装器并且必须链接 C 指针。
module node_mod_cinter
use, intrinsic :: iso_c_binding
use, non_intrinsic :: node_mod
implicit none
contains
recursive subroutine set_cptr(node)
type(fnode), pointer, intent(in) :: node
node%c%self = c_loc(node)
if (associated(node%next)) then
node%c%next = c_loc(node%next%c)
call set_cptr(node%next)
end if
end subroutine set_cptr
function allocate_nodes_citer(n) bind(c, name="allocate_nodes") result(cptr)
integer(c_int), value, intent(in) :: n
type(c_ptr) :: cptr
type(fnode), pointer :: node
node => allocate_nodes(n)
call set_cptr(node)
cptr = c_loc(node%c)
end function allocate_nodes_citer
subroutine deallocate_nodes_citer(cptr) bind(c, name="deallocate_nodes")
type(c_ptr), value, intent(in) :: cptr
type(cnode), pointer :: subnode
type(fnode), pointer :: node
call c_f_pointer(cptr, subnode)
call c_f_pointer(subnode%self, node)
call deallocate_nodes(node)
end subroutine deallocate_nodes_citer
end module node_mod_cinter
“*_nodes_citer”例程简单地处理不同的指针类型,而 set_cptr 子例程根据 fortran 指针链接 C 互操作类型内部的 C 指针。我已经添加了 node%c%self 元素,以便可以恢复 fortran 指针并将其用于正确的重新分配,但如果您不太关心它,那么它并不是绝对需要的。
这段代码需要编译成共享库才能被其他程序使用。我在我的 linux 机器上对 gfortran 使用了以下命令。
gfortran -fPIC -shared -o libnode.so node.f90
最后,分配 10 个节点的列表的 python 代码,打印出每个节点的 node%c%value,然后再次释放所有内容。此外,还显示了 Fortran 和 C 节点的内存位置。
#!/usr/bin/env python
import ctypes
from ctypes import POINTER, c_int, c_void_p
class Node(ctypes.Structure):
pass
Node._fields_ = (
("self", c_void_p),
("next", POINTER(Node)),
("value", c_int),
)
def define_function(res, args, paramflags, name, lib):
prot = ctypes.CFUNCTYPE(res, *args)
return prot((name, lib), paramflags)
def main():
import os.path
libpath = os.path.abspath("libnode.so")
lib = ctypes.cdll.LoadLibrary(libpath)
allocate_nodes = define_function(
res=POINTER(Node),
args=(
c_int,
),
paramflags=(
(1, "n"),
),
name="allocate_nodes",
lib=lib,
)
deallocate_nodes = define_function(
res=None,
args=(
POINTER(Node),
),
paramflags=(
(1, "cptr"),
),
name="deallocate_nodes",
lib=lib,
)
node_ptr = allocate_nodes(10)
n = node_ptr[0]
print "value", "f_ptr", "c_ptr"
while True:
print n.value, n.self, ctypes.addressof(n)
if n.next:
n = n.next[0]
else:
break
deallocate_nodes(node_ptr)
if __name__ == "__main__":
main()
执行此操作会得到以下输出:
value f_ptr c_ptr
1 15356144 15356144
2 15220144 15220144
3 15320384 15320384
4 14700384 14700384
5 15661152 15661152
6 15661200 15661200
7 15661248 15661248
8 14886672 14886672
9 14886720 14886720
10 14886768 14886768
有趣的是,两种节点类型都从相同的内存位置开始,所以 node%c%self 并不是真正需要的,但这只是因为我对类型定义很小心,这真的不应该指望。
就是这样。即使不必处理链表也很麻烦,但 ctypes 比 f2py 更强大、更健壮。希望这会带来一些好处。
关于python - Cpython 和 fortran 链表之间的互操作性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14595406/
如果您使用 -i 选项调用 cpython 解释器,它会在完成任何命令或脚本后进入交互模式。有没有办法在程序中让解释器执行此操作,即使它没有给出 -i?明显的用例是在异常情况发生时通过交互式检查状态进
我是按照官方cpython代码link here上的说明操作的.我做了一个 hg update 3.5 然后做了以下。 sudo apt-get build-dep python3.5 但它抛出了一个
我打算尝试使用 PyPy。但是我用 rust-cpython 编写的扩展(.so 文件)在使用 pypy3 执行时无法加载: ImportError: No module named 'pkg.lib
我试图配置预提交挂接,在运行预提交运行--所有文件时,我收到以下错误:。我已尝试升级pip以解决此问题pip安装--升级pip,但我收到另一个错误:。我尝试检查PIP和PIP3的版本,但现在我也收到了
我想为 android 创建电影下载应用程序以供学习。 为了方便开发,我想使用 youtube-dl 作为下载器后端。 所以我想将 Cpython 运行时和 ffmpeg(用于转换电影格式)嵌入到 A
我有一个 Windows fatal exception: code 0xc0000374 - 是的,有多处理(等待但是......)。 Google 表示异常代码 0xc0000374 表示堆损坏。
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我刚刚成功编译了 C++ 类的 Python 包装器。但是,当我尝试将模块加载到 Python 时(通过 import cell),我收到以下消息: ImportError: dynamic modu
在我用 python 函数包装的一个 C++ 源文件中,有人包含了以下内容: namespace some_namespace { static double some_double; } flo
例如,0 STORE_NAME 0 (sys) 是import sys 指令的一部分。这种指令格式有任何文档吗?更何况,这种格式是Python的标准吗?还是具体实现? 最佳答案 即Python byt
我有这个故意不高效的代码: def suffix_array_alternative_naive(s): return [rank for suffix, rank in sorted((s[
应该如何编写 CPython 扩展,以便 pydoc 提及参数名称而不是 (...)? 我关注了 official python tutorial about extending Python ,甚至
我正在尝试在运行 Raspbian Jessie 的 Raspberry Pi 上从源代码构建和安装 python 3.6.2。以下是构建过程的过程: $ ./configure --enable-o
GAE 有各种限制,其中之一是最大的可分配内存块大小为 1Mb(现在是 10 倍,但这并没有改变问题)。这一限制意味着不能在 list() 中放置超过一定数量的项目,因为 CPython 会尝试为元素
我和一个 friend 聊天,比较语言,他提到 Java 的自动内存管理优于 Python,因为 Java 有压缩,而 Python 没有——因此对于长时间运行的服务器,Python 是一个糟糕的选择
我一直在深入研究源代码,以找出打印结果的时间点。例如: >>> x = 1 >>> x + 2 3 以上两条语句编译为: 1 0 LOAD_CONST
我最近在生产系统中发现了一个潜在的错误,其中两个字符串使用身份运算符进行比较,例如: if val[2] is not 's': 我想这无论如何都会经常起作用,因为据我所知,CPython 将短的不可
Python 允许字符串乘以整数: >>> 'hello' * 5 'hellohellohellohellohello' 这是如何在 CPython 中实现的? 我特别感谢指向源代码的指针; the
我正在阅读 this page在文档中,并注意到它说 This is the full Python grammar, as it is read by the parser generator an
我目前正在制作 CPython 3.0 Python 解释器的嵌入式系统端口,我对任何引用资料或文档特别感兴趣,这些引用资料或文档提供有关版本 3.0 的代码设计和结构的详细信息,甚至是任何2.x 版
我是一名优秀的程序员,十分优秀!