From 1b94df24fde6dea36d85b1ea7873a83e1a213277 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Thu, 17 Jul 2014 16:05:07 +0000
Subject: [PATCH] Midway through lots of fixes, checkpoint

---
 src/mini_blas.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mini_blas.h b/src/mini_blas.h
index cfbb6c4..bf5debb 100644
--- a/src/mini_blas.h
+++ b/src/mini_blas.h
@@ -27,11 +27,11 @@
 
 void im2col_cpu(float* data_im,
     const int batch, const int channels, const int height, const int width,
-    const int ksize, const int stride, float* data_col);
+    const int ksize, const int stride, int pad, float* data_col);
 
-void col2im_cpu(float* data_col, const int channels,
-    const int height, const int width, const int ksize, const int stride,
-    float* data_im);
+void col2im_cpu(float* data_col,
+        const int batch, const int channels, const int height, const int width,
+        const int ksize, const int stride, int pad, float* data_im);
 void test_blas();
 
 void gemm_gpu(int TA, int TB, int M, int N, int K, float ALPHA, 

--
Gitblit v1.10.0