From c52fa4742866125e35e88d0653dac99473e5fffb Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Mon, 16 Apr 2018 10:09:10 +0000
Subject: [PATCH] Loss-graph store automatically (iterations == max_batches) at the end of training
---
src/convolutional_layer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/convolutional_layer.c b/src/convolutional_layer.c
index cd36929..91c5b3c 100644
--- a/src/convolutional_layer.c
+++ b/src/convolutional_layer.c
@@ -248,7 +248,7 @@
//printf("Tensor Cores - Backward-filter enabled: l->bf_algo = CUDNN_CONVOLUTION_BWD_FILTER_ALGO_WINOGRAD_NONFUSED \n");
if (fw == 2 && bd == 2 && bf == 2) printf("TF ");
- else if (fw >= 1 && bd >= 1 && bf >= 1) printf("TH ");
+ else if (fw == 1 && bd == 1 && bf == 1) printf("TH ");
}
}
#endif
--
Gitblit v1.10.0