Home
last modified time | relevance | path

Searched refs:sqrt_n (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_segment_op_test.py47 def sqrt_n(values): function
136 (ragged_math_ops.segment_sqrt_n, sqrt_n, [0, 0, 1, 1, 2, 2]),
137 (ragged_math_ops.segment_sqrt_n, sqrt_n, [0, 0, 0, 1, 1, 1]),
138 (ragged_math_ops.segment_sqrt_n, sqrt_n, [5, 4, 3, 2, 1, 0]),
139 (ragged_math_ops.segment_sqrt_n, sqrt_n, [0, 0, 0, 10, 10, 10]),
/external/python/futures/
Dprimes.py21 sqrt_n = int(math.floor(math.sqrt(n)))
22 for i in range(3, sqrt_n + 1, 2):
/external/python/futures/docs/
Dindex.rst185 sqrt_n = int(math.floor(math.sqrt(n)))
186 for i in range(3, sqrt_n + 1, 2):
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst263 sqrt_n = int(math.floor(math.sqrt(n)))
264 for i in range(3, sqrt_n + 1, 2):