- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试开始使用 Numba,安装它后我的第一次体验是使用以下代码:
from numba import autojit
@autojit
def trial(a,b):
return a+b
trial(1,1)
我收到以下错误,它告诉我 autojit 误解了变量类型,但没有告诉我更多信息。 (同样的情况也发生在其他包装函数的方法上,例如 @jit(...)
。)问题类似于 this ,但不是特定于操作的:无论函数在做什么或它有多简单(如示例所示),它都会发生。关于问题可能是什么的任何建议?在 Ubuntu 12.04 上运行并根据 Github 上的说明安装.
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-1-653102b59b98> in <module>()
5 return a+b
6
----> 7 trial(1,1)
/usr/local/lib/python2.7/dist-packages/numba/numbawrapper.so in numba.numbawrapper._NumbaSpecializingWrapper.__call__ (numba/numbawrapper.c:3934)()
/usr/local/lib/python2.7/dist-packages/numba/wrapping/compiler.pyc in compile_from_args(self, args, kwargs)
67 def compile_from_args(self, args, kwargs):
68 signature = self.resolve_argtypes(args, kwargs)
---> 69 return self.compile(signature)
70
71 def compile(self, signature):
/usr/local/lib/python2.7/dist-packages/numba/wrapping/compiler.pyc in compile(self, signature)
86 env=self.env, func_ast=self.ast, **self.flags)
87
---> 88 compiled_function = dec(self.py_func)
89 return compiled_function
90
/usr/local/lib/python2.7/dist-packages/numba/decorators.pyc in _jit_decorator(func)
222 sig, lfunc, wrapper = compile_function(env, func, argtys,
223 restype=return_type,
--> 224 nopython=nopython, func_ast=func_ast, **kwargs)
225 return numbawrapper.create_numba_wrapper(func, wrapper, sig, lfunc)
226
/usr/local/lib/python2.7/dist-packages/numba/decorators.pyc in compile_function(env, func, argtypes, restype, func_ast, **kwds)
131 assert kwds.get('llvm_module') is None, kwds.get('llvm_module')
132
--> 133 func_env = pipeline.compile2(env, func, restype, argtypes, func_ast=func_ast, **kwds)
134
135 function_cache.register_specialization(func_env)
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in compile2(env, func, restype, argtypes, ctypes, compile_only, func_ast, **kwds)
142 pipeline = env.get_pipeline(kwds.get('pipeline_name', None))
143 func_ast.pipeline = pipeline
--> 144 post_ast = pipeline(func_ast, env)
145 func_signature = func_env.func_signature
146 symtab = func_env.symtab
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in __call__(self, ast, env)
189
190 if self.is_composed:
--> 191 ast = self.transform(ast, env)
192 else:
193 try:
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in transform(self, ast, env)
654 stage_tuple = (stage, utils.ast2tree(ast))
655 logger.debug(pprint.pformat(stage_tuple))
--> 656 ast = stage(ast, env)
657 return ast
658
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in _stage(ast, env)
639 def _stage(ast, env):
640 stage_obj = getattr(env.pipeline_stages, name)
--> 641 return _check_stage_object(stage_obj)(ast, env)
642 _stage.__name__ = name
643 stage = _stage
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in __call__(self, ast, env)
192 else:
193 try:
--> 194 ast = self.transform(ast, env)
195 except error.NumbaError as e:
196 func_env = env.translation.crnt
/usr/local/lib/python2.7/dist-packages/numba/pipeline.pyc in transform(self, ast, env)
551 **func_env.kwargs)
552
--> 553 func_env.translator.translate()
554 func_env.lfunc = func_env.translator.lfunc
555 return ast
/usr/local/lib/python2.7/dist-packages/numba/codegen/translate.pyc in translate(self)
327 self.lfunc = None
328 try:
--> 329 self.setup_func()
330 if isinstance(self.ast, ast.FunctionDef):
331 # Handle the doc string for the function
/usr/local/lib/python2.7/dist-packages/numba/codegen/translate.pyc in setup_func(self)
304
305 # TODO: Put current function into symbol table for recursive call
--> 306 self.setup_return()
307
308 if self.have_cfg:
/usr/local/lib/python2.7/dist-packages/numba/codegen/translate.pyc in setup_return(self)
471 llvm_ret_type = self.func_signature.return_type.to_llvm(self.context)
472 self.return_value = self.builder.alloca(llvm_ret_type,
--> 473 "return_value")
474
475 # All non-NULL object emporaries are DECREFed here
/usr/local/lib/python2.7/dist-packages/llvm/core.pyc in alloca(self, ty, size, name)
2303
2304 def alloca(self, ty, size=None, name=""):
-> 2305 sizeptr = size._ptr if size else None
2306 return _make_value(self._ptr.CreateAlloca(ty._ptr, sizeptr, name))
2307
AttributeError: 'str' object has no attribute '_ptr'
编辑:作为对@JoshAdel 的回应,我使用了 Github 页面上的“自定义 Python 环境”说明和我的 LLVM_BUILD_DIR=/opt/
。从 repo 的 CHANGE_LOG 中,我将安装的版本设为 0.11。如果我运行您提供的示例,我会得到
from numba import autojit, typeof
@autojit
def trial(a,b):
print typeof(a), typeof(b)
return a+b
trial(1,1)
给哪个
File "<unknown file>", line 2
print typeof(a), typeof(b)
^
SyntaxError: invalid syntax
如果我删除 @autojit
它工作正常。它在调用 @autojit
时抛出 SyntaxError
当然是一个线索,但我对此还很陌生,所以我不能说什么......
此外,以防万一,我在 IPython Notebook 中运行它,以便在启动时自动加载 numpy、scipy 和 matplotlib。
最佳答案
我认为问题可能与此提交有关:
https://github.com/llvmpy/llvmpy/commit/b9752e1e981499879823f1f371e61b037706be4b
您会看到 alloca 的 API 发生了变化(第二个参数现在是大小,而不是名称)。 NUMBA 代码似乎将名称(即“return_value”)作为第二个参数传递。作为一个 glace,我猜测您可以更改 所有 numba 调用以传递 None。例如,这是我遇到相同错误的一行:
self.return_value = self.builder.alloca(llvm_ret_type,
"return_value")
将其切换为:
self.return_value = self.builder.alloca(llvm_ret_type, None,
"return_value")
你会得到正确的行为。
关于python - 属性错误 : 'str' object has no attribute '_ptr' in Numba @autojit function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21323431/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!