summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/CuTNetLib/cuCompDisc.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CuTNetLib/cuCompDisc.cc b/src/CuTNetLib/cuCompDisc.cc
index e1dfef2..57b2b79 100644
--- a/src/CuTNetLib/cuCompDisc.cc
+++ b/src/CuTNetLib/cuCompDisc.cc
@@ -4,6 +4,7 @@
#include "Error.h"
+#include <stdio.h>
namespace TNet
{
@@ -112,6 +113,7 @@ namespace TNet
CuCompound::
BackpropagateF(const CuMatrix<BaseFloat>& X, CuMatrix<BaseFloat>& Y)
{
+ printf("BP+\n");
int iLoc=0,oLoc=0;
CuMatrix<BaseFloat> In;
CuMatrix<BaseFloat> Out;
@@ -123,6 +125,7 @@ namespace TNet
iLoc+=mBlocks[i]->GetNOutputs();
oLoc+=mBlocks[i]->GetNInputs();
}
+ printf("BP-\n");
}
void