Home
last modified time | relevance | path

Searched refs:transposed (Results 1 – 25 of 41) sorted by relevance

12

/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_MatMul.pbtxt6 If true, "a" is transposed before multiplication.
12 If true, "b" is transposed before multiplication.
18 "a" (after being transposed if transpose_a is true) must match the
19 outer dimension of "b" (after being transposed if transposed_b is
Dapi_def_QuantizedMatMul.pbtxt54 If true, `a` is transposed before multiplication.
60 If true, `b` is transposed before multiplication.
73 `a` (after being transposed if `transpose_a` is non-zero) must match the
74 outer dimension of `b` (after being transposed if `transposed_b` is
Dapi_def_DepthToSpace.pbtxt40 The output would be the input transposed to the following layout:
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dtranspose_op.cc79 xla::XlaOp transposed; in Compile() local
82 transposed = ctx->Input("x"); in Compile()
84 transposed = xla::Transpose(ctx->Input("x"), transposed_order); in Compile()
89 ctx->SetOutput(0, xla::Conj(transposed)); in Compile()
91 ctx->SetOutput(0, transposed); in Compile()
/external/eigen/bench/btl/libs/gmm/
Dgmm_interface.hh86 gmm::mult(gmm::transposed(A),gmm::transposed(B), X); in transposed_matrix_matrix_product()
90 gmm::mult(gmm::transposed(A),A, X); in ata_product()
94 gmm::mult(A,gmm::transposed(A), X); in aat_product()
102 gmm::mult(gmm::transposed(A),B,X); in atv_product()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dtranspose_test.cc120 Array2D<float> transposed({{1.0f, 3.0f, 5.0f}, {2.0f, 4.0f, 6.0f}}); in TEST_F() local
128 const Array2D<float>& expected = transposes % 2 == 0 ? input : transposed; in TEST_F()
/external/tensorflow/tensorflow/python/kernel_tests/
Dlinalg_ops_test.py142 transposed = linalg.adjoint(matrix)
143 self.assertEqual((3, 2), transposed.get_shape())
144 self.assertAllEqual(expected_transposed, self.evaluate(transposed))
Darray_ops_test.py57 transposed = array_ops.matrix_transpose(matrix)
58 self.assertEqual((3, 2), transposed.get_shape())
59 self.assertAllEqual(expected_transposed, transposed)
65 transposed = array_ops.matrix_transpose(matrix, conjugate=True)
66 self.assertEqual((3, 2), transposed.get_shape())
67 self.assertAllEqual(expected_transposed, transposed)
76 transposed = array_ops.matrix_transpose(batch_matrix)
77 self.assertEqual((2, 3, 2), transposed.get_shape())
78 self.assertAllEqual(expected_transposed, transposed)
/external/tensorflow/tensorflow/python/keras/layers/
Dmerge.py139 transposed = False
155 transposed = True
159 transposed = True
165 if transposed:
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_idct.c74 bool transposed, float size) in calc_addr() argument
76 unsigned wm_start = (right_side == transposed) ? TGSI_WRITEMASK_X : TGSI_WRITEMASK_Y; in calc_addr()
79 unsigned wm_tc = (right_side == transposed) ? TGSI_WRITEMASK_Y : TGSI_WRITEMASK_X; in calc_addr()
97 struct ureg_src saddr[2], bool right_side, bool transposed, in increment_addr() argument
100 unsigned wm_start = (right_side == transposed) ? TGSI_WRITEMASK_X : TGSI_WRITEMASK_Y; in increment_addr()
101 unsigned wm_tc = (right_side == transposed) ? TGSI_WRITEMASK_Y : TGSI_WRITEMASK_X; in increment_addr()
/external/toolchain-utils/crb/
Dtable_formatter.py125 transposed=False, argument
132 if transposed == True:
/external/eigen/doc/
DCustomizingEigen_Plugins.dox42 inline Transpose<Derived> transposed() {return this->transpose();}
43 inline const Transpose<Derived> transposed() const {return this->transpose();}
/external/mesa3d/src/compiler/spirv/
Dvtn_alu.c67 struct vtn_ssa_value *src0_transpose = wrap_matrix(b, _src0->transposed); in matrix_multiply()
68 struct vtn_ssa_value *src1_transpose = wrap_matrix(b, _src1->transposed); in matrix_multiply()
191 if (src0->transposed) { in vtn_handle_matrix_alu()
192 dest->ssa = vtn_ssa_transpose(b, mat_times_scalar(b, src0->transposed, in vtn_handle_matrix_alu()
Dvtn_private.h253 struct vtn_ssa_value *transposed; member
/external/libvpx/libvpx/vpx_dsp/arm/
Didct4x4_add_neon.asm32 ; transposed rows) and then transpose the results (so that it goes back
72 ; do the transform on transposed rows
/external/libvpx/config/arm-neon/vpx_dsp/arm/
Didct4x4_add_neon.asm.S40 @ transposed rows) and then transpose the results (so that it goes back
80 @ do the transform on transposed rows
/external/eigen/bench/
Dsparse_transpose.cpp84 BENCH(for (int k=0; k<REPEAT; ++k) gmm::copy(gmm::transposed(m1),m3);) in main()
Dsparse_dense_product.cpp130 BENCH( gmm::mult(gmm::transposed(m1), gmmV1, gmmV2); ) in main()
Dspmv.cpp201 SPMV_BENCH(gmm::mult(gmm::transposed(gm), gv, gres)); in main()
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineInplaceLU.h100 const int transposed = 0) const;
307 …xType>::solve(const MatrixBase<BDerived> &b, MatrixBase<XDerived>* x, const int transposed) const { in solve() argument
/external/python/cpython3/Doc/tutorial/
Ddatastructures.rst303 >>> transposed = []
305 ... transposed.append([row[i] for row in matrix])
307 >>> transposed
312 >>> transposed = []
318 ... transposed.append(transposed_row)
320 >>> transposed
/external/python/cpython2/Doc/tutorial/
Ddatastructures.rst354 >>> transposed = []
356 ... transposed.append([row[i] for row in matrix])
358 >>> transposed
363 >>> transposed = []
369 ... transposed.append(transposed_row)
371 >>> transposed
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_compiler_test.cc325 xla::Shape transposed = in TEST_F() local
329 xla::ShapeUtil::MakeTupleShape({transposed, transposed})); in TEST_F()
367 xla::Shape transposed = in TEST_F() local
371 xla::ShapeUtil::MakeTupleShape({transposed, transposed})); in TEST_F()
/external/Microsoft-GSL/tests/
Dstrided_span_tests.cpp783 strided_span<int, 2> transposed{cs.data(), cs.bounds().total_size(), reverse_bounds}; variable
786 strided_span<int, 1> result = transposed[0];
/external/skqp/src/sksl/
DSkSLGLSLCodeGenerator.cpp432 String transposed = this->getTypeName(base.toCompound(fContext, in writeTransposeHack() local
435 fExtraFunctions.writeText((transposed + " " + name + "(" + type + " m) {\nreturn " + in writeTransposeHack()
436 transposed + "(").c_str()); in writeTransposeHack()

12