fix conflict

pull/2839/head
YangZhou 3 years ago
commit 380193b9f7

@ -43,13 +43,13 @@ bool FeatureCache::Read(std::vector<kaldi::BaseFloat>* feats) {
result = Compute(); result = Compute();
} while (result); } while (result);
} }
if (cache_.empty()) return false; if (cache_.empty()) return false;
// read from cache // read from cache
*feats = cache_.front(); *feats = cache_.front();
cache_.pop(); cache_.pop();
//ready_feed_condition_.notify_one(); VLOG(1) << "FeatureCache::Read cost: " << timer.Elapsed() << " sec.";
VLOG(2) << "FeatureCache::Read cost: " << timer.Elapsed() << " sec.";
return true; return true;
} }

Loading…
Cancel
Save