Home
last modified time | relevance | path

Searched refs:static_getitem (Results 1 – 11 of 11) sorted by relevance

/dports/devel/py-numba/numba-0.51.2/numba/core/rewrites/
H A D__init__.py7 from numba.core.rewrites import (static_getitem, static_raise, static_binop,
H A Dstatic_getitem.py39 new_expr = ir.Expr.static_getitem(value=expr.value,
84 new_expr = ir.Expr.static_getitem(value=expr.value,
/dports/devel/py-numba/numba-0.51.2/docs/source/developer/
H A Darchitecture.rst645 …a0size0.2 = static_getitem(value=a0_sh_attr0.0, index_var=$consta00.1, index=0) ['$consta00.1', 'a…
649 …a1size0.5 = static_getitem(value=a1_sh_attr0.3, index_var=$consta10.4, index=0) ['$consta10.4', 'a…
653 …a2size0.8 = static_getitem(value=a2_sh_attr0.6, index_var=$consta20.7, index=0) ['$consta20.7', 'a…
H A Drepomap.rst138 - :ghfile:`numba/core/rewrites/static_getitem.py` - Rewrites getitem and setitem
/dports/devel/py-numba/numba-0.51.2/numba/tests/
H A Dtest_dictobject.py1918 def static_getitem(): function
1931 rdonlys = (_len, static_getitem, contains, copy)
/dports/devel/py-numba/numba-0.51.2/numba/core/
H A Dir.py513 def static_getitem(cls, value, index, index_var, loc): member in Expr
H A Dinterpreter.py466 expr = ir.Expr.static_getitem(self.get(tupleobj),
H A Dir_utils.py1824 getitem = ir.Expr.static_getitem(value=callres, index=i,
/dports/devel/py-numba/numba-0.51.2/numba/parfors/
H A Dparfor_lowering.py156 rhs=ir.Expr.static_getitem(redshape_var, j, None, loc),
H A Darray_analysis.py2976 getitem = ir.Expr.static_getitem(attr_var, i, None, var.loc)
/dports/devel/py-numba/numba-0.51.2/
H A DCHANGE_LOG1254 * PR #4532: Fix static_getitem with Literal type as index