Home | History | Annotate | Download | only in distributions

Lines Matching refs:atol

69 ErrorSpec = collections.namedtuple("ErrorSpec", ["rtol", "atol"])
92 self.assertAllClose(expected_x, x.eval(), atol=0.)
107 self.assertAllClose(expected_x_, x_, atol=0.)
137 _error32 = ErrorSpec(rtol=1e-4, atol=0.)
138 _error64 = ErrorSpec(rtol=1e-6, atol=0.)
171 atol=error_spec.atol)
198 atol=error_spec.atol)
211 _error32 = ErrorSpec(rtol=1e-4, atol=0.)
212 _error64 = ErrorSpec(rtol=1e-4, atol=0.)
225 # Differences show up as soon as we're in the tail, so add some atol.
226 _error32 = ErrorSpec(rtol=0.1, atol=1e-7)
227 _error64 = ErrorSpec(rtol=0.1, atol=1e-7)
240 _error32 = ErrorSpec(rtol=1e-6, atol=1e-14)
241 _error64 = ErrorSpec(rtol=1e-6, atol=1e-14)
247 _error32 = ErrorSpec(rtol=1e-4, atol=0)
248 _error64 = ErrorSpec(rtol=1e-7, atol=0)
320 atol=error_spec.atol)
346 self.assertAllClose(expected_x, x.eval(), atol=0.)
401 atol=error_spec.atol)
410 ErrorSpec(rtol=5e-4, atol=0))
420 ErrorSpec(rtol=0.05, atol=0))