From 08d0e07ed64139d2552d7801b755af7f34b4a75e Mon Sep 17 00:00:00 2001 From: Alexey <AlexeyAB@users.noreply.github.com> Date: Sun, 19 Aug 2018 11:08:02 +0000 Subject: [PATCH] Update Readme.md --- src/blas.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/blas.h b/src/blas.h index e1bfbf0..c40422a 100644 --- a/src/blas.h +++ b/src/blas.h @@ -36,6 +36,7 @@ void weighted_sum_cpu(float *a, float *b, float *s, int num, float *c); void softmax(float *input, int n, float temp, float *output, int stride); +void upsample_cpu(float *in, int w, int h, int c, int batch, int stride, int forward, float scale, float *out); #ifdef GPU #include "cuda.h" @@ -84,5 +85,7 @@ void flatten_ongpu(float *x, int spatial, int layers, int batch, int forward, float *out); +void upsample_gpu(float *in, int w, int h, int c, int batch, int stride, int forward, float scale, float *out); + #endif #endif -- Gitblit v1.10.0