HomeSort by relevance Sort by last modified time
    Searched refs:Transpose (Results 76 - 100 of 156) sorted by null

1 2 34 5 6 7

  /external/tensorflow/tensorflow/core/kernels/
conv_grad_ops_3d.cc 204 // Fill a new "reverted" filter. We need to transpose the in_depth and
306 // For the backprop of the filter, we need to also transpose the
326 // For the backprop of the filter, we need to transpose the input.
487 auto transpose = perftools::gputools::blas::Transpose::kTranspose; variable
488 auto no_transpose = perftools::gputools::blas::Transpose::kNoTranspose;
492 ->ThenBlasGemm(transpose, no_transpose, n, m, k, 1.0f, b_ptr, k,
515 auto transpose = perftools::gputools::blas::Transpose::kTranspose; variable
516 auto no_transpose = perftools::gputools::blas::Transpose::kNoTranspose
    [all...]
conv_ops_3d.cc 216 auto no_transpose = perftools::gputools::blas::Transpose::kNoTranspose;
243 auto no_transpose = perftools::gputools::blas::Transpose::kNoTranspose;
  /external/eigen/Eigen/src/Cholesky/
LLT.h 373 Transpose<MatrixType> matt(mat);
379 Transpose<MatrixType> matt(mat);
385 Transpose<MatrixType> matt(mat);
LDLT.h 456 Transpose<MatrixType> matt(mat);
463 Transpose<MatrixType> matt(mat);
591 dst = m_transpositions.transpose() * dst;
640 res = transpositionsP().transpose() * res;
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
100 typedef Transpose<Block<const VectorsType, 1, Dynamic> > EssentialVectorType;
105 return Block<const VectorsType,1,Dynamic>(h.m_vectors, k, start, 1, h.rows()-start).transpose();
208 /** \brief %Transpose of the Householder sequence. */
209 HouseholderSequence transpose() const function in class:Eigen::HouseholderSequence
223 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
331 typename internal::conditional<Side==OnTheRight, Transpose<SubVectorsType>, SubVectorsType&>::type sub_vecs(sub_vecs1);
406 /** \brief Sets the transpose flag.
407 * \param [in] trans New value of the transpose flag.
409 * By default, the transpose flag is not set. If the transpose flag is set, then this object represents
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
matrix_unittest.cc 81 actual_result.Transpose(initial_mat);
84 initial_mat.Transpose();
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 207 typedef typename internal::conditional<TransposeInput,Transpose<const ActualMatrixType>, ActualMatrixType const&>::type RowMajorWrapper;
  /external/eigen/Eigen/src/SparseCore/
SparseUtil.h 64 template<typename Lhs, typename Rhs, bool Transpose> class SparseDenseOuterProduct;
ConservativeSparseSparseProduct.h 156 // ressort to transpose to sort the entries
335 Transpose<ResultType> trRes(res);
336 internal::sparse_sparse_to_dense_product_impl<Rhs,Lhs,Transpose<ResultType> >(rhs, lhs, trRes);
  /external/eigen/lapack/
dlarft.f 229 CALL DGEMV( 'Transpose', J-I, I-1, -TAU( I ),
244 CALL DGEMV( 'No transpose', I-1, J-I, -TAU( I ),
251 CALL DTRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T,
288 CALL DGEMV( 'Transpose', N-K+I-J, K-I, -TAU( I ),
303 CALL DGEMV( 'No transpose', K-I, N-K+I-J,
310 CALL DTRMV( 'Lower', 'No transpose', 'Non-unit', K-I,
slarft.f 229 CALL SGEMV( 'Transpose', J-I, I-1, -TAU( I ),
244 CALL SGEMV( 'No transpose', I-1, J-I, -TAU( I ),
251 CALL STRMV( 'Upper', 'No transpose', 'Non-unit', I-1, T,
288 CALL SGEMV( 'Transpose', N-K+I-J, K-I, -TAU( I ),
303 CALL SGEMV( 'No transpose', K-I, N-K+I-J,
310 CALL STRMV( 'Lower', 'No transpose', 'Non-unit', K-I,
dlarf.f 200 CALL DGEMV( 'Transpose', LASTV, LASTC, ONE, C, LDC, V, INCV,
215 CALL DGEMV( 'No transpose', LASTC, LASTV, ONE, C, LDC,
slarf.f 200 CALL SGEMV( 'Transpose', LASTV, LASTC, ONE, C, LDC, V, INCV,
215 CALL SGEMV( 'No transpose', LASTC, LASTV, ONE, C, LDC,
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
MINRES.h 250 typedef typename internal::conditional<TransposeInput,Transpose<const ActualMatrixType>, ActualMatrixType const&>::type RowMajorWrapper;
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
batchtospace_op.cc 94 xla::ComputationDataHandle permuted = b->Transpose(reshaped, permutation);
spacetobatch_op.cc 125 b->Transpose(reshaped_padded, permutation);
  /external/tensorflow/tensorflow/compiler/tf2xla/lib/
util.cc 173 return builder->Transpose(x, permutation);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_matchers.h 164 HLO_MATCHER(Transpose);
  /external/tensorflow/tensorflow/contrib/lite/kernels/
transpose_test.cc 66 reference_ops::Transpose<float>(input.data(), input_dims,
193 "Transpose op permutations array is out of bounds.");
195 "Transpose op permutations array is out of bounds.");
257 "Transpose op only supports 1D-4D input arrays.");
  /external/tensorflow/tensorflow/contrib/specs/python/
specs_ops.py 112 Transpose = Fun(array_ops.transpose)
  /external/dng_sdk/source/
dng_matrix.cpp 998 dng_matrix Transpose (const dng_matrix &A)
1046 dng_matrix B = Transpose (A);
  /external/eigen/Eigen/src/Core/
DenseBase.h 319 typedef Transpose<Derived> TransposeReturnType;
321 TransposeReturnType transpose();
322 typedef typename internal::add_const<Transpose<const Derived> >::type ConstTransposeReturnType;
324 ConstTransposeReturnType transpose() const;
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVOpCodeEnum.h 77 _SPIRV_OP(Transpose, 84)
  /external/tensorflow/tensorflow/compiler/xla/python/
local_computation_builder.cc 447 ComputationDataHandle LocalComputationBuilder::Transpose(
450 return builder_.Transpose(operand, permutation);
  /external/tensorflow/tensorflow/compiler/xla/tests/
dot_operation_test.cc 598 lhs_arg = builder.Transpose(lhs_arg, {1, 0});
601 rhs_arg = builder.Transpose(rhs_arg, {1, 0});

Completed in 301 milliseconds

1 2 34 5 6 7