Searched refs:axis2 (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_array_ops.py | 319 def diagonal(a, offset=0, axis1=0, axis2=1): # pylint: disable=missing-docstring argument 324 axis1 == maybe_rank - 2 or axis1 == -2) and (axis2 == maybe_rank - 1 or 325 axis2 == -1): 328 a = moveaxis(a, (axis1, axis2), (-2, -1)) 798 def swapaxes(a, axis1, axis2): # pylint: disable=missing-docstring argument 811 isinstance(axis1, int) and isinstance(axis2, int)): 815 axis1, axis2 = adjust_axes((axis1, axis2), a_rank) 817 perm[axis1] = axis2 818 perm[axis2] = axis1 821 axis1, axis2 = adjust_axes((axis1, axis2), a_rank) [all …]
|
D | np_math_ops.py | 1293 def trace(a, offset=0, axis1=0, axis2=1, dtype=None): # pylint: disable=missing-docstring argument 1302 if (axis1 == -2 or axis1 == rank - 2) and (axis2 == -1 or 1303 axis2 == rank - 1): 1306 a = np_array_ops.diagonal(a, offset, axis1, axis2)
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | trace_op_test.py | 33 np_ans = np.trace(x, axis1=-2, axis2=-1)
|
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/fonts/ |
D | Selawik-README.md | 43 \axis2 | Shows 0 because this font doesn't yet have a second axis. 45 \axis2hex | Same as \axis2 but in hex.
|
/external/tensorflow/third_party/py/numpy/tf_numpy_api/ |
D | tensorflow.experimental.numpy.pbtxt | 337 …argspec: "args=[\'a\', \'offset\', \'axis1\', \'axis2\'], varargs=None, keywords=None, defaults=[\… 829 argspec: "args=[\'a\', \'axis1\', \'axis2\'], varargs=None, keywords=None, defaults=None" 857 …argspec: "args=[\'a\', \'offset\', \'axis1\', \'axis2\', \'dtype\'], varargs=None, keywords=None, …
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | constant_folding_test.cc | 2614 Output axis2 = ops::Const(scope.WithOpName("axis2"), 1, {}); in TEST_F() local 2616 ops::Concat c1(scope.WithOpName("c1"), {in1, in2}, axis2); in TEST_F()
|