From 08c7cf9c88befd845f00c00d85e40a9eead4b1b3 Mon Sep 17 00:00:00 2001 From: Joseph Redmon <pjreddie@gmail.com> Date: Sun, 19 Jun 2016 21:28:15 +0000 Subject: [PATCH] no mean on input binarization --- src/blas.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/blas.h b/src/blas.h index 47d930c..b4cfcf2 100644 --- a/src/blas.h +++ b/src/blas.h @@ -31,6 +31,7 @@ void smooth_l1_cpu(int n, float *pred, float *truth, float *delta, float *error); void l2_cpu(int n, float *pred, float *truth, float *delta, float *error); +void weighted_sum_cpu(float *a, float *b, float *s, int num, float *c); #ifdef GPU void axpy_ongpu(int N, float ALPHA, float * X, int INCX, float * Y, int INCY); -- Gitblit v1.10.0