From 75a25c5e60784ac4a87950e2b1c2b506f4d7b17b Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Thu, 29 Jun 2017 17:52:42 +0000
Subject: [PATCH] For the console-app that uses DLL changed: MT-Debug-DLL (/MDd) to MT-DLL (/MD)
---
src/avgpool_layer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/avgpool_layer.c b/src/avgpool_layer.c
index c6db477..b6932fe 100644
--- a/src/avgpool_layer.c
+++ b/src/avgpool_layer.c
@@ -4,7 +4,7 @@
avgpool_layer make_avgpool_layer(int batch, int w, int h, int c)
{
- fprintf(stderr, "Avgpool Layer: %d x %d x %d image\n", w,h,c);
+ fprintf(stderr, "avg %4d x%4d x%4d -> %4d\n", w, h, c, c);
avgpool_layer l = {0};
l.type = AVGPOOL;
l.batch = batch;
--
Gitblit v1.10.0