File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -857,7 +857,6 @@ void ComputationGraphBuilder::UpdateComputableInfo(int32 cindex_id) {
857
857
858
858
859
859
void ComputationGraphBuilder::IncrementUsableCount (int32 cindex_id) {
860
- KALDI_PARANOID_ASSERT (static_cast <size_t >(cindex_id)<usable_count_.size ());
861
860
CindexInfo &info = cindex_info_[cindex_id];
862
861
if (info.usable_count ++ == 0 &&
863
862
info.computable != kNotComputable ) {
@@ -880,7 +879,6 @@ void ComputationGraphBuilder::IncrementUsableCount(int32 cindex_id) {
880
879
881
880
882
881
void ComputationGraphBuilder::DecrementUsableCount (int32 cindex_id) {
883
- KALDI_PARANOID_ASSERT (static_cast <size_t >(cindex_id)<usable_count_.size ());
884
882
KALDI_PARANOID_ASSERT (cindex_info_[cindex_id].usable_count > 0 );
885
883
if (--cindex_info_[cindex_id].usable_count == 0 &&
886
884
cindex_info_[cindex_id].computable != kNotComputable ) {
You can’t perform that action at this time.
0 commit comments