Go to the source code of this file.
|
| kaldi |
| This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for mispronunciations detection tasks, the reference:
|
|
|
template<typename Real > |
Real | TraceMatMat (const CuMatrixBase< Real > &A, const CuMatrixBase< Real > &B, MatrixTransposeType trans) |
|
template<typename Real > |
void | AddMatMatBatched (const Real alpha, std::vector< CuSubMatrix< Real > *> &C, const std::vector< CuSubMatrix< Real > *> &A, MatrixTransposeType transA, const std::vector< CuSubMatrix< Real > *> &B, MatrixTransposeType transB, const Real beta) |
| Does multiple matrix multiplications, executing them in parallel using cuBLAS's gemmBatched if we are using a GPU. More...
|
|
template<typename Real > |
bool | ApproxEqual (const CuMatrixBase< Real > &A, const CuMatrixBase< Real > &B, Real tol=0.01) |
|
template<typename Real > |
void | AssertEqual (const CuMatrixBase< Real > &A, const CuMatrixBase< Real > &B, float tol=0.01) |
|
template<typename Real > |
bool | SameDim (const CuMatrixBase< Real > &M, const CuMatrixBase< Real > &N) |
|
template<typename Real > |
bool | SameDimAndStride (const CuMatrixBase< Real > &M, const CuMatrixBase< Real > &N) |
|
template<typename Real > |
std::ostream & | operator<< (std::ostream &out, const CuMatrixBase< Real > &mat) |
| Print the matrix to stream. More...
|
|