From 88dbaff4e6c1a648491d0fe7d58f05d31ced69fe Mon Sep 17 00:00:00 2001
From: Alexey <AlexeyAB@users.noreply.github.com>
Date: Wed, 22 Aug 2018 12:53:31 +0000
Subject: [PATCH] Merge pull request #1466 from r0l1/master

---
 src/gemm.h |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/gemm.h b/src/gemm.h
index c71cd24..3cdca99 100644
--- a/src/gemm.h
+++ b/src/gemm.h
@@ -4,6 +4,9 @@
 #include <stdint.h>
 #include <stddef.h>
 
+void convolution_2d(int w, int h, int ksize, int n, int c, int pad, int stride,
+    float *weights, float *input, float *output, float *mean);
+
 static inline void set_bit(unsigned char *const dst, size_t index) {
     size_t dst_i = index / 8;
     int dst_shift = index % 8;
@@ -31,6 +34,10 @@
     int channels, int height, int width,
     int ksize, int stride, int pad, float* data_col);
 
+void im2col_cpu_custom_transpose(float* data_im,
+    int channels, int height, int width,
+    int ksize, int stride, int pad, float* data_col, int ldb_align);
+
 void activate_array_cpu_custom(float *x, const int n, const ACTIVATION a);
 
 
@@ -39,6 +46,11 @@
         float *B, int ldb,
         float *C, int ldc);
 
+
+void forward_maxpool_layer_avx(float *src, float *dst, int *indexes, int size, int w, int h, int out_w, int out_h, int c,
+    int pad, int stride, int batch);
+
+
 void gemm(int TA, int TB, int M, int N, int K, float ALPHA,
                     float *A, int lda,
                     float *B, int ldb,

--
Gitblit v1.10.0