- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 python 项目来解析一些汇编代码
asm_parser/
- asm.py
- AST.py
- obj_code.py
...
self.dir_map_code_fp = pp.OneOrMore(...).setParseAction(Body)
Body.__init__()
token 正在接收
class Body(Node):
def __init__(self, tokens):
super(Body,self).__init__()
self.code = tokens
parseString()
关于使用输入文件字符串的语法
self.parser_asm.parseString(string, parseAll=True)
class MyBuildExt(build_ext):
def run(self):
build_ext.run(self)
build_dir = Path(self.build_lib)
root_dir = Path(__file__).parent
target_dir = build_dir if not self.inplace else root_dir
self.copy_file(Path('assembler') / '__init__.py', root_dir, target_dir)
self.copy_file(Path('assembler') / '__main__.py', root_dir, target_dir)
def copy_file(self, path, source_dir, destination_dir):
if not (source_dir / path).exists():
return
shutil.copyfile(str(source_dir / path), str(destination_dir / path))
if __name__ == '__main__':
ext_modules = [
Extension(...) for f in files
]
setup(
name="myasm",
ext_modules=cythonize(ext_modules, nthreads=8),
cmdclass=dict(build_ext=MyBuildExt),
packages=["asm"]
)
import argparse
from asm import Preprocessor
if __name__ == "__main__":
argParser = argparse.ArgumentParser(description='Assembler')
argParser.add_argument('-asm', '--asm', required=True, help="Assembly file")
argParser.add_argument('-outdir', '--outdir', required=False, default='.', help="default_img directory")
args = argParser.parse_args()
prep = Preprocessor()
parseAction()
调用
Body.__init__()
功能。 init 函数只需要两个,这里给出四个
Traceback (most recent call last):
File "run_asm.py", line 30, in <module>
prep.generate_ast(f, args.outdir)
File "pkg/asm.py", line 145, in pkg.assembler.Preprocessor.generate_ast
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 1206, in parseString
loc, tokens = self._parse( instring, 0 )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 1072, in _parseNoCache
loc,tokens = self.parseImpl( instring, preloc, doActions )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 2923, in parseImpl
loc, tokens = self_expr_parse( instring, loc, doActions, callPreParse=False )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 1072, in _parseNoCache
loc,tokens = self.parseImpl( instring, preloc, doActions )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 2607, in parseImpl
return e._parse( instring, loc, doActions )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 1098, in _parseNoCache
tokens = fn( instring, tokensStart, retTokens )
File "/u/nalaka/intelpython2/lib/python2.7/site-packages/pyparsing.py", line 819, in wrapper
ret = func(*args[limit[0]:])
File "pkg/AST.py", line 28, in pkg.AST.Body.__init__
TypeError: __init__() takes exactly 2 positional arguments (4 given)
func
下面的 pyparsing.py 代码是
Body.__init__()
功能。在纯python版本
limit[0] = 2
但 cythonized 版本
limit[0] = 0
所以参数计数在两个版本中发生了变化。我无法获得有关此的更多信息。
def wrapper(*args):
while 1:
try:
ret = func(*args[limit[0]:])
foundArity[0] = True
return ret
parseAction()
是具有 0-3 个参数的可调用方法
C{fn(s,loc,toks)}, C{fn(loc,toks)}, C{fn(toks)}, or just C{fn()}
.我想知道这与此有什么关系(不知何故弄乱了论点)
最佳答案
我对 cythonize 不熟悉,肯定会调查它。
Pyparsing 处理各种方法签名的内部代码对引发的 TypeErrors 进行检查,以检测 TypeError 是来自其自己的签名测试(它是内部创建的,因此被捕获和处理)还是来自解析操作的主体(其中将是由用户提供的代码创建的 TypeError,因此必须重新引发)。似乎这个 TypeError internal-vs-user-supplied 检测逻辑无法与 cythonized 代码一起正常工作。
您可以尝试更改 Body.__init__
来自 def __init__(self, tokens):
的签名至def __init__(self, s, loc, tokens):
?这将继续在 python 和 cython 版本中工作。
如果有任何方法可以迁移到 Python3,我强烈建议您这样做。
关于python - Cythonized pyparser 无法正常工作,函数的参数计数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61775454/
c 不做边界检查。那么cython是如何检查是否编译成c的呢? %%cython --annotate cimport cython @cython.boundscheck(True) cpdef m
可以直接声明用于 Cython 构造函数? 据我了解,这是可能的: # Cython cdef int[3] li = [1, 2, 3] # C++ int[3] li = {1, 2, 3} 但
所以,如果你有一个头文件。 %%file test.h struct mystruct{ int i; int j; }; 然后你将它包装在 Cython 中: cdef extern fr
我正在构建一个独立于平台的 cython 项目,我想根据正在使用的编译器传递编译器参数。我可以猜测基于平台的编译器,或者假设它与用于 Python 的编译器相同,但不能保证匹配。通常我注入(injec
我使用诗歌构建我的 cython 包。我在所有函数和类中都有 NumPy 风格的文档字符串。我现在要做的是添加 Sphinx 自动文档并发布在 Read the Docs。 我已阅读此主题 How d
赛通 libcpp模块包含 priority_queue 的模板,这很好,除了一件事:我不能通过自定义比较器(或者,至少,我不知道如何)。 我需要这个,因为我需要 priority_queue做一个a
以下代码定义了一个简单的 Cython 函数(为方便起见,使用 Ipython 魔法)。 %load_ext cython %%cython def f(float x, float y=2):
我正在尝试使用 cython 进行复数计算。在示例代码中,我想计算复数的复指数函数。问题是我不知道如何将我的整数乘以虚数单位。python的虚数单位1.0j乘以cython执行时报错。 这是我的代码:
在这里停留在一些基本的 Cython 上 - 在 Cython 中定义字符串数组的规范且有效的方法是什么? 具体来说,我想定义一个定长常量数组char . (请注意,此时我不想引入 NumPy。) 在
是否有可能,如果是,如何确定 Cython 中整数数据类型的大小(以位为单位)? 我正在尝试做这样的事情,以获得整数大小: cdef WORD_BITS = 0 IF sizeof(unsigned
我只是想打印 cython 变量的地址,但我无法绕过错误消息: cdef int myvar print &myvar 抛出 Cannot convert 'int *' to Python obje
我有一个 C 头文件,它在宏中定义了一个函数。我需要从 Cython 调用它。有没有办法在 Cython 中使用宏并使其完全扩展?我已经有了 C 类型的参数。 我尝试像使用函数一样使用 cdef,我认
令人惊讶的是,我似乎找不到通过名称获取结构体元素的单个示例(无论是在网络上还是在 cython 示例中)。 所以我收到了一个指向 C 函数结构体的指针,并且想要一一访问这些元素并将它们重新打包到 py
我尝试围绕 C++ 库编写一个 Cython 包装器 http://primesieve.org/ 它包装了一个函数count。到目前为止,它可以正确安装 python setup.py instal
我正在尝试将 cython 模块 data.pyx 导入另一个 cython 模块 user.pyx。一切都编译得很好,但是当我尝试在 python 模块中调用 user.pyx 时,我收到错误“Im
更新:内存 View 获胜。Cython 使用类型化内存 View :0.0253449 特别感谢 lothario,他指出了几个关键的变化。 荒谬。当然现在的问题是,似乎不能对它们做太多算术(加法和
我有一个使用 memoryview 数组的 cython 模块,即... double[:,:] foo 我想使用多处理并行运行这个模块。但是我得到了错误: PicklingError: Can't
我正在尝试使用 Cython 加速 PEP 484 类型的 python 脚本。我想保持一些语义和可读性。 之前,我有一个 Flags = int def difference(f1: Flags,
这个问题已经有答案了: Collapse multiple submodules to one Cython extension (5 个回答) 已关闭 3 年前。 我在一个包中有多个 .py 文件
我已经能够在我的 .pyx 脚本上使用 cython 在 linux 上创建一个 .so 文件。我也可以成功地在我的 python 解释器上进行导入。 我的问题是如何在不使用 cython 的情况下将
我是一名优秀的程序员,十分优秀!