]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - dense-linear-algebra-libraries/linalg.git/blob - src/ti/linalg/blasblisacc/src/ti_cblas_cblas_daxpy.c
b673a31464acfc370cf5b15290ee488eb943a252
[dense-linear-algebra-libraries/linalg.git] / src / ti / linalg / blasblisacc / src / ti_cblas_cblas_daxpy.c
1 /******************************************************************************
2  * Copyright (c) 2013-2015, Texas Instruments Incorporated - http://www.ti.com/
3  *   All rights reserved.
4  *
5  *   Redistribution and use in source and binary forms, with or without
6  *   modification, are permitted provided that the following conditions are met:
7  *       * Redistributions of source code must retain the above copyright
8  *         notice, this list of conditions and the following disclaimer.
9  *       * Redistributions in binary form must reproduce the above copyright
10  *         notice, this list of conditions and the following disclaimer in the
11  *         documentation and/or other materials provided with the distribution.
12  *       * Neither the name of Texas Instruments Incorporated nor the
13  *         names of its contributors may be used to endorse or promote products
14  *         derived from this software without specific prior written permission.
15  *
16  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  *   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  *   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  *   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20  *   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  *   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  *   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  *   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  *   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  *   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
26  *   THE POSSIBILITY OF SUCH DAMAGE.
27  *****************************************************************************/
28         
29 #include "ti_cblas_acc.h"
30 #include "../../ticblas/ticblas.h"
32 #ifdef __cplusplus
33 extern "C" { 
34 #endif
35     void __real_cblas_daxpy(const int N, const double alpha, const double *X, const int incX, double *Y, const int incY) ; 
37 #ifdef __cplusplus
38 }
39 extern "C"
40 #endif
41 void cblas_daxpy(const int N, const double alpha, const double *X, const int incX, double *Y, const int incY)
42 {
44         /* Do an init on first use */
45         if (!ti_cblas_init_done) ti_cblas_init();
46         TI_CBLAS_DEBUG_PRINT("Intercepted call to %s\n", "cblas_daxpy");
48     TI_CBLAS_PROFILE_START();
49         /* Dynamic condtional offload to ARM */
50     if ((TI_CBLAS_L1_OFFLOAD == TI_CBLAS_OFFLOAD_NONE)) { 
51         TI_CBLAS_DEBUG_PRINT("Executing ARM %s\n", "cblas_daxpy"); 
52         __real_cblas_daxpy(N,alpha,X,incX,Y,incY); 
53     TI_CBLAS_PROFILE_REPORT("  Entire %s call (ARM) took %8.2f us\n","cblas_daxpy", (float) clock_diff);
54         return ;
55     }
56     /* End ARM offload */
58         /******************************************************************/
59         /* DSP offload WILL be done if control reaches here */
60         TI_CBLAS_DEBUG_PRINT("Offloading to DSP %s\n", "cblas_daxpy"); 
62         /* Lookup kernel pointer from global table */
63 #ifdef __cplusplus
64         Event e;
65         Kernel* __K;
66 #else
67         cl_kernel __K;
68 #endif
69     __K =  ti_cblas_get_kernel(TI_CBLAS_CBLAS_DAXPY_IDX, "ocl_cblas_daxpy");
71 #ifdef __cplusplus
72         try 
73 #else
74         cl_int err = CL_SUCCESS;
75 #endif
76         {
78 #ifdef __cplusplus
79                 __K->setArg(0, N);
80 #else
81                 err |= clSetKernelArg(__K, 0, sizeof(N), &N);
82 #endif
84 #ifdef __cplusplus
85                 __K->setArg(1, alpha);
86 #else
87                 err |= clSetKernelArg(__K, 1, sizeof(alpha), &alpha);
88 #endif
89                 /* For const arguments we use CL_MEM_USE_READ_ONLY */
91                 int size_bufX;
92                 size_bufX = (1+(N-1)*abs(incX))*sizeof(double);
93                 size_bufX = MAX(size_bufX,1);
94                    
95 #ifdef __cplusplus
96                 Buffer buf_X(*ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufX, (void *)X);
97                 __K->setArg(2, buf_X);
98 #else
99                 cl_mem buf_X = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufX, (void *)X, &err);
100                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
101                 err |= clSetKernelArg(__K, 2, sizeof(buf_X), &buf_X);
102                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
103 #endif
105 #ifdef __cplusplus
106                 __K->setArg(3, incX);
107 #else
108                 err |= clSetKernelArg(__K, 3, sizeof(incX), &incX);
109 #endif
111                 int size_bufY;
112                 size_bufY = (1+(N-1)*abs(incY))*sizeof(double);
113                 size_bufY = MAX(size_bufY,1);
114                    
115 #ifdef __cplusplus
116                 Buffer buf_Y(*ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, size_bufY, (void *)Y);
117                 __K->setArg(4, buf_Y);
118 #else
119                 cl_mem buf_Y = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, size_bufY, (void *)Y, &err);
120                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
121                 err |= clSetKernelArg(__K, 4, sizeof(buf_Y), &buf_Y);
122                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
123 #endif
125 #ifdef __cplusplus
126                 __K->setArg(5, incY);
127 #else
128                 err |= clSetKernelArg(__K, 5, sizeof(incY), &incY);
129 #endif
131 #ifdef __cplusplus
132                 ti_cblas_ocl_Q->enqueueTask(*__K, 0, &e);
133                 e.wait();
134 #else
135                 cl_event e;
136                 err |= clEnqueueTask(ti_cblas_ocl_Q, __K, 0, 0, &e);
137                 TI_CBLAS_OCL_CHKERROR("clEnqueueTask",err);
138                 err |= clWaitForEvents(1, &e);
139                 TI_CBLAS_OCL_CHKERROR("clWaitForEvents",err);
140                 err |= clReleaseEvent(e);
141                 TI_CBLAS_OCL_CHKERROR("clReleaseEvent",err);
142 #endif
144                 ti_cblas_delete_kernel(__K);
146                 TI_CBLAS_DEBUG_PRINT("Finished executing %s\n", "cblas_daxpy");
147                 TI_CBLAS_PROFILE_REPORT("  Entire %s call (DSP) took %8.2f us\n","cblas_daxpy", (float) clock_diff);
148                 return ;
149         }
151 #ifdef __cplusplus
152         catch (Error err)
153         {
154                 ti_cblas_error(err.what(),err.err());
155                 return ;
156         }
157 #endif