hash-list-test.cc File Reference
#include "util/hash-list.h"
#include <map>
#include <cstdlib>
#include <iostream>
Include dependency graph for hash-list-test.cc:

Go to the source code of this file.

Namespaces

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

Functions

template<class Int , class T >
void TestHashList ()
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 96 of file hash-list-test.cc.

References rnnlm::i.

96  {
97  using namespace kaldi;
98  for (size_t i = 0;i < 3;i++) {
99  TestHashList<int, unsigned int>();
100  TestHashList<unsigned int, int>();
101  TestHashList<int16, int32>();
102  TestHashList<int16, int32>();
103  TestHashList<char, unsigned char>();
104  TestHashList<unsigned char, int>();
105  }
106  std::cout << "Test OK.\n";
107 }
This code computes Goodness of Pronunciation (GOP) and extracts phone-level pronunciation feature for...
Definition: chain.dox:20