Buckets:
MisterAI/LocalAI_Demo_backends / cpu-diffusers.upgrade-tmp /venv /lib /python3.10 /site-packages /sympy /matrices /utilities.py
| from contextlib import contextmanager | |
| from threading import local | |
| from sympy.core.function import expand_mul | |
| class DotProdSimpState(local): | |
| def __init__(self): | |
| self.state = None | |
| _dotprodsimp_state = DotProdSimpState() | |
| def dotprodsimp(x): | |
| old = _dotprodsimp_state.state | |
| try: | |
| _dotprodsimp_state.state = x | |
| yield | |
| finally: | |
| _dotprodsimp_state.state = old | |
| def _dotprodsimp(expr, withsimp=False): | |
| """Wrapper for simplify.dotprodsimp to avoid circular imports.""" | |
| from sympy.simplify.simplify import dotprodsimp as dps | |
| return dps(expr, withsimp=withsimp) | |
| def _get_intermediate_simp(deffunc=lambda x: x, offfunc=lambda x: x, | |
| onfunc=_dotprodsimp, dotprodsimp=None): | |
| """Support function for controlling intermediate simplification. Returns a | |
| simplification function according to the global setting of dotprodsimp | |
| operation. | |
| ``deffunc`` - Function to be used by default. | |
| ``offfunc`` - Function to be used if dotprodsimp has been turned off. | |
| ``onfunc`` - Function to be used if dotprodsimp has been turned on. | |
| ``dotprodsimp`` - True, False or None. Will be overridden by global | |
| _dotprodsimp_state.state if that is not None. | |
| """ | |
| if dotprodsimp is False or _dotprodsimp_state.state is False: | |
| return offfunc | |
| if dotprodsimp is True or _dotprodsimp_state.state is True: | |
| return onfunc | |
| return deffunc # None, None | |
| def _get_intermediate_simp_bool(default=False, dotprodsimp=None): | |
| """Same as ``_get_intermediate_simp`` but returns bools instead of functions | |
| by default.""" | |
| return _get_intermediate_simp(default, False, True, dotprodsimp) | |
| def _iszero(x): | |
| """Returns True if x is zero.""" | |
| return getattr(x, 'is_zero', None) | |
| def _is_zero_after_expand_mul(x): | |
| """Tests by expand_mul only, suitable for polynomials and rational | |
| functions.""" | |
| return expand_mul(x) == 0 | |
| def _simplify(expr): | |
| """ Wrapper to avoid circular imports. """ | |
| from sympy.simplify.simplify import simplify | |
| return simplify(expr) | |
Xet Storage Details
- Size:
- 2.12 kB
- Xet hash:
- 4d85830872d90a1bcc0fb8c8f301871fe20b2c8f2aeaae57c977f5d984ce53bb
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.