/external/tensorflow/tensorflow/core/kernels/linalg/ |
D | linalg_ops_common.cc | 32 template <class InputScalar, class OutputScalar> 33 void LinearAlgebraOp<InputScalar, OutputScalar>::ValidateSingleMatrix( in ValidateSingleMatrix() 43 template <class InputScalar, class OutputScalar> 44 void LinearAlgebraOp<InputScalar, OutputScalar>::ValidateSingleSquareMatrix( in ValidateSingleSquareMatrix() 54 template <class InputScalar, class OutputScalar> 55 void LinearAlgebraOp<InputScalar, OutputScalar>::ValidateSolver( in ValidateSolver() 71 template <class InputScalar, class OutputScalar> 72 void LinearAlgebraOp<InputScalar, OutputScalar>::ValidateSquareSolver( in ValidateSquareSolver() 88 template <class InputScalar, class OutputScalar> 89 void LinearAlgebraOp<InputScalar, OutputScalar>::Compute( in Compute() [all …]
|
D | linalg_ops_common.h | 38 template <class InputScalar, class OutputScalar = InputScalar> 111 using InputMatrix = Eigen::Matrix<InputScalar, Eigen::Dynamic, Eigen::Dynamic, 116 Eigen::Map<const Eigen::Matrix<InputScalar, 1, Eigen::Dynamic>>; 119 using InputRealScalar = typename Eigen::NumTraits<InputScalar>::Real;
|
D | eig_op_impl.h | 34 template <class InputScalar, class OutputScalar> 35 class EigOp : public LinearAlgebraOp<InputScalar, OutputScalar> { 37 typedef LinearAlgebraOp<InputScalar, OutputScalar> Base;
|
/external/gemmlowp/public/ |
D | gemmlowp.h | 30 template <typename InputScalar, typename OutputScalar, typename BitDepthParams, 35 const MatrixMap<const InputScalar, LhsOrder>& lhs, in GemmWithOutputPipelinePC() argument 36 const MatrixMap<const InputScalar, RhsOrder>& rhs, in GemmWithOutputPipelinePC() 41 DispatchGemmShape<InputScalar, OutputScalar, BitDepthParams>( in GemmWithOutputPipelinePC() 50 template <typename InputScalar, typename OutputScalar, typename BitDepthParams, 54 const MatrixMap<const InputScalar, LhsOrder>& lhs, in GemmWithOutputPipeline() argument 55 const MatrixMap<const InputScalar, RhsOrder>& rhs, in GemmWithOutputPipeline() 63 DispatchGemmShape<InputScalar, OutputScalar, BitDepthParams>( in GemmWithOutputPipeline()
|
/external/gemmlowp/internal/ |
D | multi_thread_gemm.h | 462 template <typename KernelFormat, typename InputScalar, typename OutputScalar, 470 const MatrixMap<const InputScalar, LhsOrder>& _lhs, in GemmWithPackedRhsTask() 528 const MatrixMap<const InputScalar, LhsOrder> lhs; 632 template <typename KernelFormat, typename InputScalar, typename OutputScalar, 637 const MatrixMap<const InputScalar, LhsOrder>& lhs, in MultiThreadGemm() argument 638 const MatrixMap<const InputScalar, RhsOrder>& rhs, in MultiThreadGemm() 661 return SingleThreadGemm<KernelFormat, InputScalar, OutputScalar, in MultiThreadGemm() 702 typedef GemmWithPackedRhsTask<KernelFormat, InputScalar, OutputScalar, in MultiThreadGemm()
|
D | dispatch_gemm_shape.h | 169 template <typename InputScalar, typename OutputScalar, typename BitDepthParams, 174 const MatrixMap<const InputScalar, LhsOrder>& lhs, 175 const MatrixMap<const InputScalar, RhsOrder>& rhs, 193 return DispatchGemmShape<InputScalar, OutputScalar, BitDepthParams>( 200 MultiThreadGemm<typename Kernel::Format, InputScalar, OutputScalar,
|
D | kernel.h | 149 typedef std::uint8_t InputScalar; // The scalar type of the original input. typedef 157 typedef std::uint8_t InputScalar; typedef 165 typedef std::int8_t InputScalar; typedef
|
D | single_thread_gemm.h | 62 template <typename KernelFormat, typename InputScalar, typename OutputScalar, 68 const MatrixMap<const InputScalar, LhsOrder>& lhs, in SingleThreadGemm() argument 69 const MatrixMap<const InputScalar, RhsOrder>& rhs, in SingleThreadGemm()
|
D | unpack.h | 101 using KernelLhsInputScalar = typename KernelFormat::Lhs::InputScalar; in UnpackResultBlock() 103 using KernelRhsInputScalar = typename KernelFormat::Rhs::InputScalar; in UnpackResultBlock()
|
D | pack.h | 215 typedef typename KernelSideFormat::InputScalar KernelInputScalar;
|
/external/gemmlowp/doc/ |
D | public.md | 32 template <typename InputScalar, typename OutputScalar, typename BitDepthParams, 36 const MatrixMap<const InputScalar, LhsOrder>& lhs, 37 const MatrixMap<const InputScalar, RhsOrder>& rhs, 57 * `InputScalar`: The scalar type of the LHS and RHS operands. At the moment,
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_fft.cpp | 189 …ernal::conditional<isComplexInput == true, std::complex<RealScalar>, RealScalar>::type InputScalar; in test_fft_real_input_energy() typedef 191 Tensor<InputScalar, TensorRank, DataLayout> input; in test_fft_real_input_energy()
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorFFT.h | 66 typedef typename XprTraits::Scalar InputScalar; 128 typedef typename XprTraits::Scalar InputScalar; 212 buf[i] = MakeComplex<internal::is_same<InputScalar, RealScalar>::value>()(m_impl.coeff(i));
|
/external/eigen/Eigen/src/Core/ |
D | VectorwiseOp.h | 43 typedef typename MatrixType::Scalar InputScalar;
|
D | CoreEvaluators.h | 1262 typedef typename ArgType::Scalar InputScalar; 1267 typedef typename MemberOp::template Cost<InputScalar,int(TraversalSize)> CostOpType;
|
/external/mesa3d/src/imgui/ |
D | imgui_widgets.cpp | 2644 bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* data_ptr, const void* ste… in InputScalar() function in ImGui 2722 value_changed |= InputScalar("", data_type, v, step, step_fast, format, flags); in InputScalarN() 2738 …return InputScalar(label, ImGuiDataType_Float, (void*)v, (void*)(step>0.0f ? &step : NULL), (void*… in InputFloat() 2795 …return InputScalar(label, ImGuiDataType_S32, (void*)v, (void*)(step>0 ? &step : NULL), (void*)(ste… in InputInt() 2816 …return InputScalar(label, ImGuiDataType_Double, (void*)v, (void*)(step>0.0 ? &step : NULL), (void*… in InputDouble()
|
D | imgui.h | 458 …IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* v, const voi…
|