From 14303717dcddae43cdc55beb0685dae86f566fd8 Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Sat, 25 Oct 2014 18:57:26 +0000
Subject: [PATCH] Fast, needs to be faster
---
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 a155c35..923afc7 100644
--- a/src/mini_blas.h
+++ b/src/mini_blas.h
@@ -55,8 +55,8 @@
float *B, int ldb,
float BETA,
float *C, int ldc);
-inline void axpy_cpu(int N, float ALPHA, float *X, int INCX, float *Y, int INCY);
-inline void copy_cpu(int N, float *X, int INCX, float *Y, int INCY);
-inline void scal_cpu(int N, float ALPHA, float *X, int INCX);
-inline float dot_cpu(int N, float *X, int INCX, float *Y, int INCY);
+void axpy_cpu(int N, float ALPHA, float *X, int INCX, float *Y, int INCY);
+void copy_cpu(int N, float *X, int INCX, float *Y, int INCY);
+void scal_cpu(int N, float ALPHA, float *X, int INCX);
+float dot_cpu(int N, float *X, int INCX, float *Y, int INCY);
void test_gpu_blas();
--
Gitblit v1.10.0