Home
last modified time | relevance | path

Searched refs:typing_context (Results 1 – 25 of 37) sorted by relevance

12

/dports/devel/py-numba/numba-0.51.2/numba/core/
H A Dregistry.py14 def nested(self, typing_context, target_context): argument
17 self._typing_context = typing_context
31 return cpu.CPUContext(self.typing_context)
50 def typing_context(self): member in CPUTarget
60 def nested_context(self, typing_context, target_context): argument
65 return self._nested.nested(typing_context, target_context)
H A Dbase.py233 def __init__(self, typing_context): argument
237 self.typing_context = typing_context
286 self.typing_context.refresh()
602 attrty = self.typing_context.resolve_module_constants(typ, attr)
726 ty = self.typing_context.unify_types(at, bt)
730 fnty = self.typing_context.resolve_value_type(key)
732 cmpsig = fnty.get_call_type(self.typing_context, (ty, ty), {})
752 fnty = self.typing_context.resolve_value_type(bool)
753 sig = fnty.get_call_type(self.typing_context, (typ,), {})
840 cres = compiler.compile_internal(self.typing_context, self,
H A Dlowering.py402 fnop = self.context.typing_context.resolve_value_type(op)
404 self.context.typing_context, signature.args, {},
457 fnop = self.context.typing_context.resolve_value_type(op)
459 self.context.typing_context, signature.args, {},
517 tyctx = self.context.typing_context
566 op = self.context.typing_context.resolve_value_type(op)
637 fnop = self.context.typing_context.resolve_value_type(op)
639 self.context.typing_context, signature.args, {},
717 fnty = self.context.typing_context.resolve_value_type(print)
1015 func_ty = self.context.typing_context.resolve_value_type(expr.fn)
[all …]
H A Dobject_mode_passes.py149 typing_context=state.typingctx,
213 state.cr = compile_result(typing_context=state.typingctx,
H A Dcompiler.py148 typing_context=target_context.typing_context,
H A Ddispatcher.py105 cres = compiler.compile_extra(self.targetdescr.typing_context,
707 self.typingctx = self.targetdescr.typing_context
962 typingctx = registry.cpu_target.typing_context
/dports/devel/py-numba/numba-0.51.2/numba/tests/
H A Dtest_ir_utils.py38 typingctx = cpu_target.typing_context
53 library=None, typing_context=None, argument
58 if typing_context is None:
59 typing_context = registry.cpu_target.typing_context
62 return cls(typing_context, target_context, library, args,
H A Dtest_array_exprs.py80 library=None, typing_context=None, target_context=None): argument
84 if typing_context is None:
85 typing_context = typing.Context()
87 target_context = cpu.CPUContext(typing_context)
88 return cls(typing_context, target_context, library, args, return_type,
340 typing_context=vaxy_descr.typing_context,
347 typing_context=vaxy_descr.typing_context,
H A Dtest_compile_cache.py17 typing_context = typing.Context()
18 context = cpu.CPUContext(typing_context)
H A Dtest_cgutils.py24 typing_context = typing.Context()
25 self.context = cpu.CPUContext(typing_context)
H A Dtest_array_analysis.py110 library=None, typing_context=None, target_context=None): argument
114 if typing_context is None:
115 typing_context = registry.cpu_target.typing_context
118 return cls(typing_context, target_context, library, args, return_type,
H A Dtest_blackscholes.py163 tyctx = cr1.typing_context
/dports/devel/py-numba/numba-0.51.2/numba/typed/
H A Dtypedobjectutils.py41 tyctxt = cpu_target.typing_context
171 fnop = context.typing_context.resolve_value_type(op)
172 fnop.get_call_type(context.typing_context, sig.args, {})
/dports/devel/py-numba/numba-0.51.2/numba/np/ufunc/
H A Dufuncbuilder.py33 def typing_context(self): member in UFuncTarget
34 return cpu_target.typing_context
100 typingctx = self.targetdescr.typing_context
H A Ddufunc.py237 typingctx = self._dispatcher.targetdescr.typing_context
/dports/devel/py-numba/numba-0.51.2/numba/core/typing/
H A Dtemplates.py619 tyctx = fcomp.targetdescr.typing_context
943 typingctx = context.typing_context
987 typing_context = context.typing_context
988 fnty = cls._get_function_type(typing_context, typ)
989 sig = cls._get_signature(typing_context, fnty, sig.args, {})
/dports/devel/py-numba/numba-0.51.2/numba/pycc/
H A Dcompiler.py116 self.typing_context = cpu_target.typing_context
153 cres = compile_extra(self.typing_context, self.context,
/dports/devel/py-numba/numba-0.51.2/numba/experimental/jitclass/
H A Dbase.py237 typingctx = cpu_target.typing_context
459 sig = dispatcher.get_call_type(context.typing_context, [typ], {})
498 sig = disp_type.get_call_type(context.typing_context,
/dports/devel/py-numba/numba-0.51.2/numba/parfors/
H A Dparfor_lowering_utils.py25 return self._context.typing_context
/dports/devel/py-numba/numba-0.51.2/numba/misc/help/
H A Dinspector.py49 tyct = target.typing_context
/dports/net-im/purple-googlechat/purple-googlechat-56ba7f7/
H A Dgooglechat_conversation.c1847 TypingContext typing_context; local
1874 typing_context__init(&typing_context);
1875 request.context = &typing_context;
1878 typing_context.group_id = &group_id;
/dports/devel/py-numba/numba-0.51.2/docs/source/developer/
H A Ddebugging.rst99 typing_context=<CUDATypingContext(_registries={<Registry(functions=[<type
/dports/devel/py-numba/numba-0.51.2/docs/source/extending/
H A Dhigh-level.rst127 the signature ``foo(typing_context, arg0, arg1)``, the decorated function will
/dports/devel/py-numba/numba-0.51.2/numba/roc/
H A Dcompiler.py70 cres.typing_context.insert_user_function(devfn, device_function_template)
/dports/devel/py-numba/numba-0.51.2/numba/cpython/
H A Dtupleobj.py271 DOCAST = context.typing_context.unify_types(sig.args[0][i],

12