Home
last modified time | relevance | path

Searched refs:axis1 (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/ops/numpy_ops/
Dnp_array_ops.py319 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 …]
Dnp_math_ops.py1293 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/
Dtrace_op_test.py33 np_ans = np.trace(x, axis1=-2, axis2=-1)
/external/harfbuzz_ng/test/shaping/data/text-rendering-tests/fonts/
DSelawik-README.md13 * 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/
Dtensorflow.experimental.numpy.pbtxt337 …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/
Dconstant_folding_test.cc2613 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()