Home
last modified time | relevance | path

Searched refs:PythonReferenceAnalysis (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/pytorch/torch/fx/passes/
H A Druntime_assert.py108 from torch.utils._sympy.reference import PythonReferenceAnalysis
196 return sympy_interp(PythonReferenceAnalysis, expr_to_proxy, expr)
200 PythonReferenceAnalysis,
/aosp_15_r20/external/pytorch/test/
H A Dtest_sympy_utils.py20 from torch.utils._sympy.reference import ReferenceAnalysis, PythonReferenceAnalysis
415 return sympy_interp(PythonReferenceAnalysis, {x: px}, sympy_expr)
418 return sympy_interp(PythonReferenceAnalysis, {x: px, y: py}, sympy_expr)
423 sympy_interp(PythonReferenceAnalysis, dict(zip(symbols, args)), sympy_expr),
/aosp_15_r20/external/pytorch/torch/utils/_sympy/
H A Dreference.py192 class PythonReferenceAnalysis(ReferenceAnalysis): class