From e56d1eff13bf8b6863cd213db157b9544cb9e3a7 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Tue, 21 Jul 2015 18:46:24 +0000
Subject: [PATCH] Switch to fast resize

---
 src/cost_layer.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cost_layer.c b/src/cost_layer.c
index 24f6ffa..76aa17e 100644
--- a/src/cost_layer.c
+++ b/src/cost_layer.c
@@ -50,7 +50,7 @@
     if(l.cost_type == MASKED){
         int i;
         for(i = 0; i < l.batch*l.inputs; ++i){
-            if(state.truth[i] == 0) state.input[i] = 0;
+            if(state.truth[i] == SECRET_NUM) state.input[i] = SECRET_NUM;
         }
     }
     copy_cpu(l.batch*l.inputs, state.truth, 1, l.delta, 1);
@@ -80,7 +80,7 @@
 {
     if (!state.truth) return;
     if (l.cost_type == MASKED) {
-        mask_ongpu(l.batch*l.inputs, state.input, state.truth);
+        mask_ongpu(l.batch*l.inputs, state.input, SECRET_NUM, state.truth);
     }
     
     copy_ongpu(l.batch*l.inputs, state.truth, 1, l.delta_gpu, 1);

--
Gitblit v1.10.0