summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Zhao <ztuowen@gmail.com>2014-10-08 00:35:24 +0800
committerJoe Zhao <ztuowen@gmail.com>2014-10-08 00:35:24 +0800
commitdcfeb9219ce7c8c7044e61ed92efdec614233268 (patch)
treefca43b083b0fb8129d55ca8fceb3434c9215dee2
parent6867355de7bf102d8367821f3839544ba649dffa (diff)
downloadtnet-dcfeb9219ce7c8c7044e61ed92efdec614233268.tar.gz
tnet-dcfeb9219ce7c8c7044e61ed92efdec614233268.tar.bz2
tnet-dcfeb9219ce7c8c7044e61ed92efdec614233268.zip
output 2
-rw-r--r--src/CuTNetLib/cuComponent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CuTNetLib/cuComponent.h b/src/CuTNetLib/cuComponent.h
index 8d0d810..71e51aa 100644
--- a/src/CuTNetLib/cuComponent.h
+++ b/src/CuTNetLib/cuComponent.h
@@ -156,7 +156,7 @@ namespace TNet {
//do the dimensionality test
if(GetNInputs() != GetInput().Cols()) {
KALDI_ERR << "Non-matching INPUT dim!!! Network dim: " << GetNInputs()
- << " Data dim: " << GetInput().Cols();
+ << " Data dim: " << GetInput().Cols() << GetName();
}
//run transform
PropagateF(GetInput(),mOutput);