/external/gemmlowp/internal/ |
D | dispatch_gemm_shape.h | 37 TransposeType<T> Transpose(const T& t) { in Transpose() function 82 dst.result_offset = Transpose(src.result_offset); 83 dst.result_mult_int = Transpose(src.result_mult_int); 97 Transpose(src.result_fixedpoint_multiplier); 98 dst.result_exponent = Transpose(src.result_exponent); 111 dst.bias_vector = Transpose(src.bias_vector); 124 return std::make_tuple(Transpose(std::get<0>(t))); 130 return std::make_tuple(Transpose(std::get<0>(t)), Transpose(std::get<1>(t))); 136 return std::make_tuple(Transpose(std::get<0>(t)), Transpose(std::get<1>(t)), 137 Transpose(std::get<2>(t))); [all …]
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/ |
D | transpose.h | 27 class Transpose : public GPUOperation { 29 Transpose(const OperationDef& definition, const TransposeAttributes& attr) in Transpose() function 36 Transpose(Transpose&& operation); 37 Transpose& operator=(Transpose&& operation); 38 Transpose(const Transpose&) = delete; 39 Transpose& operator=(const Transpose&) = delete; 50 Transpose CreateTranspose(const OperationDef& definition,
|
D | transpose.cc | 112 Transpose::Transpose(Transpose&& operation) in Transpose() function in tflite::gpu::cl::Transpose 118 Transpose& Transpose::operator=(Transpose&& operation) { in operator =() 128 Status Transpose::Compile(const CreationContext& creation_context) { in Compile() 135 Status Transpose::BindArguments() { in BindArguments() 148 int3 Transpose::GetGridSize() const { in GetGridSize() 155 Status Transpose::Tune(const TuningParameters& params) { in Tune() 160 Status Transpose::AddToQueue(CLCommandQueue* queue) { in AddToQueue() 165 Transpose CreateTranspose(const OperationDef& definition, in CreateTranspose() 167 return Transpose(definition, attr); in CreateTranspose()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | blas.h | 67 enum class Transpose { kNoTranspose, kTranspose, kConjugateTranspose }; enum 70 string TransposeString(Transpose t); 424 virtual bool DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, 429 virtual bool DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, 434 virtual bool DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, 441 virtual bool DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, 460 virtual bool DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, 464 virtual bool DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, 468 virtual bool DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, 474 virtual bool DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, [all …]
|
D | stream.h | 942 Stream &ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, uint64 kl, 946 Stream &ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, uint64 kl, 950 Stream &ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, uint64 kl, 956 Stream &ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, uint64 kl, 964 Stream &ThenBlasGemv(blas::Transpose trans, uint64 m, uint64 n, float alpha, 968 Stream &ThenBlasGemv(blas::Transpose trans, uint64 m, uint64 n, double alpha, 972 Stream &ThenBlasGemv(blas::Transpose trans, uint64 m, uint64 n, 978 Stream &ThenBlasGemv(blas::Transpose trans, uint64 m, uint64 n, 985 Stream &ThenBlasGemvWithProfiling(blas::Transpose trans, uint64 m, uint64 n, 991 Stream &ThenBlasGemvWithProfiling(blas::Transpose trans, uint64 m, uint64 n, [all …]
|
D | stream.cc | 74 string ToVlogString(blas::Transpose t) { return blas::TransposeString(t); } in ToVlogString() 2642 Stream &Stream::ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, in ThenBlasGbmv() 2651 ThenBlasImpl<blas::Transpose, uint64, uint64, uint64, uint64, float, in ThenBlasGbmv() 2658 Stream &Stream::ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, in ThenBlasGbmv() 2667 ThenBlasImpl<blas::Transpose, uint64, uint64, uint64, uint64, double, in ThenBlasGbmv() 2674 Stream &Stream::ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, in ThenBlasGbmv() 2685 ThenBlasImpl<blas::Transpose, uint64, uint64, uint64, uint64, in ThenBlasGbmv() 2694 Stream &Stream::ThenBlasGbmv(blas::Transpose trans, uint64 m, uint64 n, in ThenBlasGbmv() 2705 ThenBlasImpl<blas::Transpose, uint64, uint64, uint64, uint64, in ThenBlasGbmv() 2714 Stream &Stream::ThenBlasGemv(blas::Transpose trans, uint64 m, uint64 n, in ThenBlasGemv() [all …]
|
D | blas.cc | 23 string TransposeString(Transpose t) { in TransposeString() 25 case Transpose::kNoTranspose: in TransposeString() 27 case Transpose::kTranspose: in TransposeString() 29 case Transpose::kConjugateTranspose: in TransposeString()
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | transpose_test.cc | 42 Transpose(lhs, {1, 0}); in XLA_TEST_F() 50 Transpose(lhs, {1, 0}); in XLA_TEST_F() 58 Transpose(lhs, {1, 0}); in XLA_TEST_F() 69 Transpose(lhs, {1, 0}); in TEST_F() 80 Transpose(operand, {1, 2, 0}); in XLA_TEST_F() 89 Transpose(operand, {1, 2, 0}); in TEST_F() 100 Transpose(operand, {2, 1, 0}); in TEST_F() 111 Transpose(operand, {0, 1, 2}); in TEST_F() 126 computed = Transpose(computed, {1, 0}); in TEST_F() 139 Transpose(operand, {1, 0}); in TEST_F() [all …]
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_blas.cc | 352 rocblas_operation ROCMBlasTranspose(blas::Transpose trans) { in ROCMBlasTranspose() 354 case blas::Transpose::kNoTranspose: in ROCMBlasTranspose() 356 case blas::Transpose::kTranspose: in ROCMBlasTranspose() 358 case blas::Transpose::kConjugateTranspose: in ROCMBlasTranspose() 848 bool ROCMBlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 858 bool ROCMBlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 868 bool ROCMBlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 880 bool ROCMBlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 892 bool ROCMBlas::DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGemv() 902 bool ROCMBlas::DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGemv() [all …]
|
D | rocm_blas.h | 144 FuncT rocblas_func, Stream *stream, blas::Transpose transa, 145 blas::Transpose transb, uint64 m, uint64 n, uint64 k, T alpha, 159 Stream *stream, blas::Transpose transa, blas::Transpose transb, uint64 m, 169 Stream *stream, blas::Transpose transa, blas::Transpose transb, uint64 m, 176 bool DoBlasGemvWithProfilingImpl(Stream *stream, blas::Transpose trans,
|
/external/eigen/Eigen/src/Core/ |
D | Transpositions.h | 108 inline Transpose<TranspositionsBase> inverse() const in inverse() 109 { return Transpose<TranspositionsBase>(derived()); } in inverse() 112 inline Transpose<TranspositionsBase> transpose() const in transpose() 113 { return Transpose<TranspositionsBase>(derived()); } in transpose() 362 struct traits<Transpose<TranspositionsBase<Derived> > > 369 class Transpose<TranspositionsBase<TranspositionsDerived> > 375 explicit Transpose(const TranspositionType& t) : m_transpositions(t) {} 384 const Product<OtherDerived, Transpose, AliasFreeProduct> 385 operator*(const MatrixBase<OtherDerived>& matrix, const Transpose& trt) 387 return Product<OtherDerived, Transpose, AliasFreeProduct>(matrix.derived(), trt.derived()); [all …]
|
D | Transpose.h | 18 struct traits<Transpose<MatrixType> > : public traits<MatrixType> 52 template<typename MatrixType> class Transpose 60 EIGEN_GENERIC_PUBLIC_INTERFACE(Transpose) 64 explicit inline Transpose(MatrixType& matrix) : m_matrix(matrix) {} 66 EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Transpose) 95 typedef typename dense_xpr_base<Transpose<MatrixType> >::type type; 101 typedef typename dense_xpr_base<Transpose<MatrixType> >::type type; 109 : public internal::generic_xpr_base<Transpose<XprType> >::type 112 typedef typename internal::generic_xpr_base<Transpose<XprType> >::type Base; 122 EIGEN_DENSE_PUBLIC_INTERFACE(Transpose<MatrixType>) [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseTranspose.h | 18 : public SparseMatrixBase<Transpose<MatrixType> > 23 : public SparseCompressedBase<Transpose<MatrixType> > 25 typedef SparseCompressedBase<Transpose<MatrixType> > Base; 55 struct unary_evaluator<Transpose<ArgType>, IteratorBased> 56 : public evaluator_base<Transpose<ArgType> > 60 typedef Transpose<ArgType> XprType;
|
/external/tensorflow/tensorflow/core/kernels/ |
D | transpose_functor.h | 62 struct Transpose { struct 179 Transpose<Device, uint8>::run(d, in, perm, out); in DoTransposeImpl() 188 Transpose<Device, uint16>::run(d, in, perm, out); in DoTransposeImpl() 194 Transpose<Device, uint32>::run(d, in, perm, out); in DoTransposeImpl() 199 Transpose<Device, uint64>::run(d, in, perm, out); in DoTransposeImpl() 210 Transpose<Device, complex64, /*conjugate=*/true>::run(d, in, perm, out); in DoTransposeImpl() 213 Transpose<Device, uint64>::run(d, in, perm, out); in DoTransposeImpl() 219 Transpose<Device, complex128, /*conjugate=*/true>::run(d, in, perm, in DoTransposeImpl() 222 Transpose<Device, complex128, /*conjugate=*/false>::run(d, in, perm, in DoTransposeImpl() 228 Transpose<Device, tstring>::run(d, in, perm, out); in DoTransposeImpl()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_blas.cc | 273 cublasOperation_t CUDABlasTranspose(blas::Transpose trans) { in CUDABlasTranspose() 275 case blas::Transpose::kNoTranspose: in CUDABlasTranspose() 277 case blas::Transpose::kTranspose: in CUDABlasTranspose() 279 case blas::Transpose::kConjugateTranspose: in CUDABlasTranspose() 870 bool CUDABlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 881 bool CUDABlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 892 bool CUDABlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 906 bool CUDABlas::DoBlasGbmv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGbmv() 920 bool CUDABlas::DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGemv() 930 bool CUDABlas::DoBlasGemv(Stream *stream, blas::Transpose trans, uint64 m, in DoBlasGemv() [all …]
|
D | cuda_blas.h | 111 FuncT cublas_func, Stream *stream, blas::Transpose transa, 112 blas::Transpose transb, uint64 m, uint64 n, uint64 k, Scalar alpha, 121 Stream *stream, blas::Transpose transa, blas::Transpose transb, uint64 m, 131 Stream *stream, blas::Transpose transa, blas::Transpose transb, uint64 m, 138 bool DoBlasGemvWithProfilingImpl(Stream *stream, blas::Transpose trans,
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | clone_constants_for_better_clustering_test.cc | 75 Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm); in TEST() 76 Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm); in TEST() 101 Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm); in TEST() 102 Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm); in TEST() 131 Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm_int0); in TEST() 132 Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm_int1); in TEST() 162 Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm); in TEST() 163 Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm); in TEST() 189 Output tr0 = ops::Transpose(on_gpu.WithOpName("tr0"), in0, perm); in TEST() 190 Output tr1 = ops::Transpose(on_gpu.WithOpName("tr1"), in1, perm); in TEST()
|
/external/python/cpython3/Modules/_decimal/libmpdec/literature/ |
D | six-step.txt | 18 1a) Transpose the matrix. 22 1c) Transpose the matrix. 28 4) Transpose the matrix. 41 1) Transpose the matrix, producing an R*C matrix. 47 4a) Transpose the matrix. 51 4c) Transpose the matrix.
|
/external/tensorflow/tensorflow/compiler/jit/tests/ |
D | opens2s_gnmt_mixed_precision.golden_summary | 84 Transpose 3 109 Transpose 2 132 Transpose 1 136 Transpose 3 150 Transpose 2 156 Transpose 1 274 Transpose 3 349 Transpose 1
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | format_utils.h | 237 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 257 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 341 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) = delete; 354 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 401 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 459 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 516 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 576 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 652 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function 727 INLINE static void Transpose(const uint8_t* pSrc, uint8_t* pDst) in Transpose() function [all …]
|
/external/angle/third_party/glslang/src/Test/baseResults/ |
D | hlsl.matType.int.frag.out | 613 23: 18 Transpose 22 616 32: 25 Transpose 31 619 41: 34 Transpose 40 622 50: 43 Transpose 49 625 54: 28 Transpose 53 628 60: 55 Transpose 59 631 68: 61 Transpose 67 634 76: 69 Transpose 75 637 80: 37 Transpose 79 640 84: 64 Transpose 83 [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.matType.int.frag.out | 613 23: 18 Transpose 22 616 32: 25 Transpose 31 619 41: 34 Transpose 40 622 50: 43 Transpose 49 625 54: 28 Transpose 53 628 60: 55 Transpose 59 631 68: 61 Transpose 67 634 76: 69 Transpose 75 637 80: 37 Transpose 79 640 84: 64 Transpose 83 [all …]
|
/external/tensorflow/tensorflow/lite/toco/graph_transformations/ |
D | resolve_constant_transpose.cc | 29 void Transpose(Model* model, const Array& input_array, in Transpose() function 147 Transpose<ArrayDataType::kFloat>(model, input_array, op->perm, in Run() 151 Transpose<ArrayDataType::kUint8>(model, input_array, op->perm, in Run() 155 Transpose<ArrayDataType::kInt32>(model, input_array, op->perm, in Run() 159 Transpose<ArrayDataType::kInt64>(model, input_array, op->perm, in Run() 163 Transpose<ArrayDataType::kComplex64>(model, input_array, op->perm, in Run()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | RegAllocPBQP.h | 227 void handleAddEdge(const MatrixMetadata& MD, bool Transpose) { in handleAddEdge() argument 228 DeniedOpts += Transpose ? MD.getWorstRow() : MD.getWorstCol(); in handleAddEdge() 230 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows(); in handleAddEdge() 235 void handleRemoveEdge(const MatrixMetadata& MD, bool Transpose) { in handleRemoveEdge() argument 236 DeniedOpts -= Transpose ? MD.getWorstRow() : MD.getWorstCol(); in handleRemoveEdge() 238 Transpose ? MD.getUnsafeCols() : MD.getUnsafeRows(); in handleRemoveEdge() 331 bool Transpose = N1Id != G.getEdgeNode1Id(EId); in handleUpdateCosts() local 336 N1Md.handleRemoveEdge(OldMMd, Transpose); in handleUpdateCosts() 337 N2Md.handleRemoveEdge(OldMMd, !Transpose); in handleUpdateCosts() 341 N1Md.handleAddEdge(MMd, Transpose); in handleUpdateCosts() [all …]
|
/external/tensorflow/tensorflow/core/kernels/rnn/ |
D | blas_gemm.cc | 45 se::blas::Transpose trans[] = {se::blas::Transpose::kNoTranspose, in operator ()() 46 se::blas::Transpose::kTranspose}; in operator ()()
|