From c14514fbc5e8ace79395f952e6f26fa3cfd4b52d Mon Sep 17 00:00:00 2001 From: Joseph Redmon <pjreddie@gmail.com> Date: Sat, 05 Nov 2016 21:10:27 +0000 Subject: [PATCH] need the actual chars --- src/blas.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/blas.h b/src/blas.h index 6b6b8f5..51554a8 100644 --- a/src/blas.h +++ b/src/blas.h @@ -77,7 +77,8 @@ void reorg_ongpu(float *x, int w, int h, int c, int batch, int stride, int forward, float *out); -void softmax_gpu(float *input, int n, int groups, float temp, float *output, cudaStream_t stream); +void softmax_gpu(float *input, int n, int offset, int groups, float temp, float *output); +void adam_gpu(int n, float *x, float *m, float *v, float B1, float B2, float rate, float eps, int t); #endif #endif -- Gitblit v1.10.0