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

  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffVector.h 40 typedef AutoDiffScalar<typename JacobianType::ColXpr> CoeffType;
52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); }
56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i));
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorReductionCuda.h 113 template <typename CoeffType, typename Index>
114 __global__ void ReductionInitKernel(const CoeffType val, Index num_preserved_coeffs, CoeffType* output) {

Completed in 422 milliseconds