Searched refs:axis1 (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 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) 823 perm = array_ops.tensor_scatter_update(perm, [[axis1], [axis2]], [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 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 | 13 * Numerous interesting debugging glyphs (requires liga to be enabled). For example, \axis1 will sho… 42 \axis1 | Shows the normalized coordinate on the wght axis for the currently selected instance (e.g.… 44 \axis1hex | Same as \axis1 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 | 2613 Output axis1 = ops::Const(scope.WithOpName("axis1"), 0, {}); in TEST_F() local 2617 ops::Concat c2(scope.WithOpName("c2"), {Output(c1), in3}, axis1); in TEST_F()
|