Home | History | Annotate | Download | only in ops

Lines Matching defs:atol

48                atol=None,
56 The `atol` and `rtol` parameters allow for some slack in `pmf`, `cdf`
61 = 1, if Abs(x - loc) <= atol + rtol * Abs(loc),
68 atol: Non-negative `Tensor` of same `dtype` as `loc` and broadcastable
90 with ops.name_scope(name, values=[loc, atol, rtol]):
111 self._atol = self._get_tol(atol)
115 self._slack = self.atol
117 self._slack = self.atol + self.rtol * math_ops.abs(self.loc)
137 def atol(self):
208 atol=None,
215 The `atol` and `rtol` parameters allow for some slack in `pmf`, `cdf`
220 = 1, if Abs(x - loc) <= atol + rtol * Abs(loc),
227 atol: Non-negative `Tensor` of same `dtype` as `loc` and broadcastable
245 atol=atol,
286 = 1, if All[Abs(x - loc) <= atol + rtol * Abs(loc)],
313 atol=None,
323 The `atol` and `rtol` parameters allow for some slack in `pmf`
328 = 1, if All[Abs(x - loc) <= atol + rtol * Abs(loc)],
335 atol: Non-negative `Tensor` of same `dtype` as `loc` and broadcastable
353 atol=atol,