cu-vector.h File Reference
Include dependency graph for cu-vector.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  CuMatrixBase< Real >
 Matrix for CUDA computing. More...
 
class  CuVectorBase< Real >
 Vector for CUDA computing. More...
 
class  CuVector< Real >
 
class  CuSubVector< Real >
 

Namespaces

 kaldi
 This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
 

Functions

template<typename Real >
Real VecVec (const CuVectorBase< Real > &a, const CuVectorBase< Real > &b)
 
template<typename Real , typename OtherReal >
Real VecVec (const CuVectorBase< Real > &A, const CuVectorBase< OtherReal > &B)
 
template<typename Real >
std::ostream & operator<< (std::ostream &out, const CuVectorBase< Real > &vec)
 Print the vector to stream. More...
 
template<typename Real >
bool ApproxEqual (const CuVectorBase< Real > &a, const CuVectorBase< Real > &b, Real tol=0.01)
 
template<typename Real >
void AssertEqual (const CuVectorBase< Real > &a, const CuVectorBase< Real > &b, Real tol=0.01)
 
template<typename Real >
Real VecMatVec (const CuVectorBase< Real > &v1, const CuMatrixBase< Real > &M, const CuVectorBase< Real > &v2)
 Returns $ v_1^T M v_2 $ . More...