HomeSort by relevance Sort by last modified time
    Searched refs:transposed (Results 1 - 24 of 24) sorted by null

  /external/eigen/bench/btl/libs/gmm/
gmm_interface.hh 86 gmm::mult(gmm::transposed(A),gmm::transposed(B), X);
90 gmm::mult(gmm::transposed(A),A, X);
94 gmm::mult(A,gmm::transposed(A), X);
102 gmm::mult(gmm::transposed(A),B,X);
  /external/tensorflow/tensorflow/python/kernel_tests/
linalg_ops_test.py 133 transposed = linalg.adjoint(matrix)
134 self.assertEqual((3, 2), transposed.get_shape())
135 self.assertAllEqual(expected_transposed, transposed.eval())
array_ops_test.py 54 transposed = array_ops.matrix_transpose(matrix)
55 self.assertEqual((3, 2), transposed.get_shape())
56 self.assertAllEqual(expected_transposed, transposed.eval())
63 transposed = array_ops.matrix_transpose(matrix, conjugate=True)
64 self.assertEqual((3, 2), transposed.get_shape())
65 self.assertAllEqual(expected_transposed, transposed.eval())
75 transposed = array_ops.matrix_transpose(batch_matrix)
76 self.assertEqual((2, 3, 2), transposed.get_shape())
77 self.assertAllEqual(expected_transposed, transposed.eval())
84 transposed = array_ops.matrix_transpose(matrix_ph
    [all...]
  /external/eigen/bench/
sparse_transpose.cpp 84 BENCH(for (int k=0; k<REPEAT; ++k) gmm::copy(gmm::transposed(m1),m3);)
sparse_dense_product.cpp 130 BENCH( gmm::mult(gmm::transposed(m1), gmmV1, gmmV2); )
152 // BENCH( boost::ublas::prod(gmm::transposed(m1), gmmV1, gmmV2); )
spmv.cpp 201 SPMV_BENCH(gmm::mult(gmm::transposed(gm), gv, gres));
  /external/tensorflow/tensorflow/compiler/xla/tests/
transpose_test.cc 116 Array2D<float> transposed({{1.0f, 3.0f, 5.0f}, {2.0f, 4.0f, 6.0f}});
124 const Array2D<float>& expected = transposes % 2 == 0 ? input : transposed;
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonModel.cpp 206 std::vector<float> transposed = local
210 reinterpret_cast<const uint8_t*>(transposed.data()),
213 std::vector<uint8_t> transposed = local
217 reinterpret_cast<const uint8_t*>(transposed.data()),
239 std::vector<float> transposed = transpose<float>( local
242 reinterpret_cast<const uint8_t*>(transposed.data()),
245 std::vector<uint8_t> transposed = transpose<uint8_t>( local
248 reinterpret_cast<const uint8_t*>(transposed.data()),
  /external/mesa3d/src/compiler/spirv/
vtn_alu.c 67 struct vtn_ssa_value *src0_transpose = wrap_matrix(b, _src0->transposed);
68 struct vtn_ssa_value *src1_transpose = wrap_matrix(b, _src1->transposed);
111 /* We don't handle the case where src1 is transposed but not src0, since
191 if (src0->transposed) {
192 dest->ssa = vtn_ssa_transpose(b, mat_times_scalar(b, src0->transposed,
vtn_private.h 188 * transpose of some other value. The value that `transposed` points to
191 struct vtn_ssa_value *transposed; member in struct:vtn_ssa_value
spirv_to_nir.c     [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/layers/
merge.py 136 transposed = False
149 transposed = True
153 transposed = True
159 if transposed:
160 # If inputs have been transposed, we have to transpose the output too.
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 100 const int transposed = 0) const;
300 * of the transposed/adjoint system is computed instead.
302 * Not all backends implement the solution of the transposed or
307 bool SkylineInplaceLU<MatrixType>::solve(const MatrixBase<BDerived> &b, MatrixBase<XDerived>* x, const int transposed) const {
  /external/toolchain-utils/crb/
table_formatter.py 82 # Assumes table is not transposed.
125 transposed=False,
132 if transposed == True:
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c 74 bool transposed, float size)
76 unsigned wm_start = (right_side == transposed) ? TGSI_WRITEMASK_X : TGSI_WRITEMASK_Y;
79 unsigned wm_tc = (right_side == transposed) ? TGSI_WRITEMASK_Y : TGSI_WRITEMASK_X;
97 struct ureg_src saddr[2], bool right_side, bool transposed,
100 unsigned wm_start = (right_side == transposed) ? TGSI_WRITEMASK_X : TGSI_WRITEMASK_Y;
101 unsigned wm_tc = (right_side == transposed) ? TGSI_WRITEMASK_Y : TGSI_WRITEMASK_X;
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 414 String transposed = this->getTypeName(base.toCompound(fContext, local
417 fExtraFunctions.writeText((transposed + " " + name + "(" + type + " m) {\nreturn " +
418 transposed + "(").c_str());
    [all...]
  /external/skqp/src/sksl/
SkSLGLSLCodeGenerator.cpp 414 String transposed = this->getTypeName(base.toCompound(fContext, local
417 fExtraFunctions.writeText((transposed + " " + name + "(" + type + " m) {\nreturn " +
418 transposed + "(").c_str());
    [all...]
  /external/Microsoft-GSL/tests/
strided_span_tests.cpp 739 strided_span<int, 2> transposed{cs.data(), cs.bounds().total_size(), reverse_bounds};
742 strided_span<int, 1> result = transposed[0];
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
ops.py 45 transposed = core.transpose(labeled_tensor, temp_axes.keys())
47 array_ops.gather(transposed.tensor, indexer), temp_axes)
774 transposed if necessary as part of the matmul op.
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
user_computation.cc 3186 HloInstruction* transposed; local
    [all...]
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
layers.py     [all...]
  /frameworks/rs/script_api/
rs_matrix.spec 207 The matrix is first inverted then transposed. Returns true if the matrix was
  /external/tensorflow/tensorflow/go/op/
wrappers.go 859 // value: If true, `a` is transposed before multiplication.
869 // value: If true, `b` is transposed before multiplication.
891 // `a` (after being transposed if `transpose_a` is non-zero) must match the
892 // outer dimension of `b` (after being transposed if `transposed_b` is
    [all...]
  /external/valgrind/
configure     [all...]

Completed in 442 milliseconds