Skip to content

Commit f9b00e9

Browse files
authored
[src] Some small cosmetic changes (kaldi-asr#2404)
1 parent 4edec5d commit f9b00e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/cudamatrix/cu-matrix.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,8 @@ class CuMatrixBase {
693693

694694
// The following two functions should only be called if we did not compile
695695
// with CUDA or could not get a CUDA card; in that case the contents are
696-
// interpreted the same as a regular matrix. Don't use these unless you know
697-
// what you are doing!
696+
// interpreted the same as a regular matrix. DON'T USE THESE UNLESS YOU KNOW
697+
// WHAT YOU ARE DOING!
698698
inline const MatrixBase<Real> &Mat() const {
699699
return *(reinterpret_cast<const MatrixBase<Real>* >(this));
700700
}

src/lat/determinize-lattice-pruned.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,7 +1437,7 @@ bool DeterminizeLatticePhonePruned(
14371437
// If --phone-determinize is true, do the determinization on phone + word
14381438
// lattices.
14391439
if (opts.phone_determinize) {
1440-
KALDI_VLOG(1) << "Doing first pass of determinization on phone + word "
1440+
KALDI_VLOG(3) << "Doing first pass of determinization on phone + word "
14411441
<< "lattices.";
14421442
ans = DeterminizeLatticePhonePrunedFirstPass<Weight, IntType>(
14431443
trans_model, beam, ifst, det_opts) && ans;
@@ -1452,14 +1452,14 @@ bool DeterminizeLatticePhonePruned(
14521452

14531453
// If --word-determinize is true, do the determinization on word lattices.
14541454
if (opts.word_determinize) {
1455-
KALDI_VLOG(1) << "Doing second pass of determinization on word lattices.";
1455+
KALDI_VLOG(3) << "Doing second pass of determinization on word lattices.";
14561456
ans = DeterminizeLatticePruned<Weight, IntType>(
14571457
*ifst, beam, ofst, det_opts) && ans;
14581458
}
14591459

14601460
// If --minimize is true, push and minimize after determinization.
14611461
if (opts.minimize) {
1462-
KALDI_VLOG(1) << "Pushing and minimizing on word lattices.";
1462+
KALDI_VLOG(3) << "Pushing and minimizing on word lattices.";
14631463
ans = PushCompactLatticeStrings<Weight, IntType>(ofst) && ans;
14641464
ans = PushCompactLatticeWeights<Weight, IntType>(ofst) && ans;
14651465
ans = MinimizeCompactLattice<Weight, IntType>(ofst) && ans;

0 commit comments

Comments
 (0)