]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - dense-linear-algebra-libraries/linalg.git/blob - blasblisacc/src/ti_cblas_cblas_ssyr2k.c
c7c30f005af24db20c7a93a18b4fd19258bfd093
[dense-linear-algebra-libraries/linalg.git] / blasblisacc / src / ti_cblas_cblas_ssyr2k.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.h"
31 #ifdef __cplusplus
32 extern "C" { 
33 #endif
34     void __real_cblas_ssyr2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const float alpha, const float *A, const int lda, const float *B, const int ldb, const float beta, float *C, const int ldc) ; 
36 #ifdef __cplusplus
37 }
38 extern "C"
39 #endif
40 void cblas_ssyr2k(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo, const enum CBLAS_TRANSPOSE Trans, const int N, const int K, const float alpha, const float *A, const int lda, const float *B, const int ldb, const float beta, float *C, const int ldc)
41 {
43         /* Do an init on first use */
44         if (!ti_cblas_init_done) ti_cblas_init();
45         TI_CBLAS_DEBUG_PRINT("Intercepted call to %s\n", "cblas_ssyr2k");
47     TI_CBLAS_PROFILE_START();
48         /* Dynamic condtional offload to ARM */
49     if ((TI_CBLAS_L3_OFFLOAD == TI_CBLAS_OFFLOAD_NONE) || ((TI_CBLAS_L3_OFFLOAD == TI_CBLAS_OFFLOAD_SIZE) && (!ssyr2k_offload_dsp(Order,N,K)))) { 
50         TI_CBLAS_DEBUG_PRINT("Executing ARM %s\n", "cblas_ssyr2k"); 
51         __real_cblas_ssyr2k(Order,Uplo,Trans,N,K,alpha,A,lda,B,ldb,beta,C,ldc); 
52     TI_CBLAS_PROFILE_REPORT("  Entire %s call (ARM) took %8.2f us\n","cblas_ssyr2k", (float) clock_diff);
53         return ;
54     }
55     /* End ARM offload */
57         /******************************************************************/
58         /* DSP offload WILL be done if control reaches here */
59         TI_CBLAS_DEBUG_PRINT("Offloading to DSP %s\n", "cblas_ssyr2k"); 
61         /* Lookup kernel pointer from global table */
62 #ifdef __cplusplus
63         Event e;
64         Kernel* __K;
65 #else
66         cl_kernel __K;
67 #endif
68         __K =  ti_cblas_get_kernel(TI_CBLAS_CBLAS_SSYR2K_IDX, "ocl_cblas_ssyr2k");
69 #ifdef __cplusplus
70         try 
71 #else
72         cl_int err = CL_SUCCESS;
73 #endif
74         {
76 #ifdef __cplusplus
77                 __K->setArg(0, Order);
78 #else
79                 err |= clSetKernelArg(__K, 0, sizeof(Order), &Order);
80 #endif
82 #ifdef __cplusplus
83                 __K->setArg(1, Uplo);
84 #else
85                 err |= clSetKernelArg(__K, 1, sizeof(Uplo), &Uplo);
86 #endif
88 #ifdef __cplusplus
89                 __K->setArg(2, Trans);
90 #else
91                 err |= clSetKernelArg(__K, 2, sizeof(Trans), &Trans);
92 #endif
94 #ifdef __cplusplus
95                 __K->setArg(3, N);
96 #else
97                 err |= clSetKernelArg(__K, 3, sizeof(N), &N);
98 #endif
100 #ifdef __cplusplus
101                 __K->setArg(4, K);
102 #else
103                 err |= clSetKernelArg(__K, 4, sizeof(K), &K);
104 #endif
106 #ifdef __cplusplus
107                 __K->setArg(5, alpha);
108 #else
109                 err |= clSetKernelArg(__K, 5, sizeof(alpha), &alpha);
110 #endif
111                 /* For const arguments we use CL_MEM_USE_READ_ONLY */
113                 int size_bufA;
114                 size_bufA = BLAS_ORD_T(Order,Trans,N,K)*lda*sizeof(float);
115                 size_bufA = MAX(size_bufA,1);
116                    
117 #ifdef __cplusplus
118                 Buffer buf_A(*ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufA, (void *)A);
119                 __K->setArg(6, buf_A);
120 #else
121                 cl_mem buf_A = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufA, (void *)A, &err);
122                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
123                 err |= clSetKernelArg(__K, 6, sizeof(buf_A), &buf_A);
124                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
125 #endif
127 #ifdef __cplusplus
128                 __K->setArg(7, lda);
129 #else
130                 err |= clSetKernelArg(__K, 7, sizeof(lda), &lda);
131 #endif
132                 /* For const arguments we use CL_MEM_USE_READ_ONLY */
134                 int size_bufB;
135                 size_bufB = BLAS_ORD_T(Order,Trans,N,K)*ldb*sizeof(float);
136                 size_bufB = MAX(size_bufB,1);
137                    
138 #ifdef __cplusplus
139                 Buffer buf_B(*ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufB, (void *)B);
140                 __K->setArg(8, buf_B);
141 #else
142                 cl_mem buf_B = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_ONLY|CL_MEM_USE_HOST_PTR, size_bufB, (void *)B, &err);
143                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
144                 err |= clSetKernelArg(__K, 8, sizeof(buf_B), &buf_B);
145                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
146 #endif
148 #ifdef __cplusplus
149                 __K->setArg(9, ldb);
150 #else
151                 err |= clSetKernelArg(__K, 9, sizeof(ldb), &ldb);
152 #endif
154 #ifdef __cplusplus
155                 __K->setArg(10, beta);
156 #else
157                 err |= clSetKernelArg(__K, 10, sizeof(beta), &beta);
158 #endif
160                 int size_bufC;
161                 size_bufC = N*ldc*sizeof(float);
162                 size_bufC = MAX(size_bufC,1);
163                    
164 #ifdef __cplusplus
165                 Buffer buf_C(*ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, size_bufC, (void *)C);
166                 __K->setArg(11, buf_C);
167 #else
168                 cl_mem buf_C = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, size_bufC, (void *)C, &err);
169                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
170                 err |= clSetKernelArg(__K, 11, sizeof(buf_C), &buf_C);
171                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
172 #endif
174 #ifdef __cplusplus
175                 __K->setArg(12, ldc);
176 #else
177                 err |= clSetKernelArg(__K, 12, sizeof(ldc), &ldc);
178 #endif
180                 void *msmc_ptr;
181                 msmc_ptr = ti_cblas_mem_alloc(MSMC_BUF_SIZE);
182 #ifdef __cplusplus
183                 Buffer buf_MSMC(*ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, MSMC_BUF_SIZE, (void *)msmc_ptr);
184                 //Buffer buf_MSMC(ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_MSMC_TI, MSMC_BUF_SIZE);
185                 __K->setArg(13, buf_MSMC);
187 #else
188                 //cl_mem buf_MSMC = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_MSMC_TI, MSMC_BUF_SIZE, NULL, &err);
189                 cl_mem buf_MSMC = clCreateBuffer(ti_cblas_ocl_context, CL_MEM_READ_WRITE|CL_MEM_USE_HOST_PTR, MSMC_BUF_SIZE, (void *)msmc_ptr, &err);
190                 TI_CBLAS_OCL_CHKERROR("clCreateBuffer",err);
191                 err |= clSetKernelArg(__K, 13, sizeof(buf_MSMC), &buf_MSMC);
192                 TI_CBLAS_OCL_CHKERROR("clSetKernelArg",err);
193 #endif
195 #ifdef __cplusplus
196                 __K->setArg(14, __local(L2_BUF_SIZE));
197 #else
198                 err |= clSetKernelArg(__K, 14, L2_BUF_SIZE, NULL);
199 #endif
201 #ifdef __cplusplus
202                 ti_cblas_ocl_Q->enqueueTask(*__K, 0, &e);
203                 e.wait();
204 #else
205                 cl_event e;
206                 err |= clEnqueueTask(ti_cblas_ocl_Q, __K, 0, 0, &e);
207                 TI_CBLAS_OCL_CHKERROR("clEnqueueTask",err);
208                 err |= clWaitForEvents(1, &e);
209                 TI_CBLAS_OCL_CHKERROR("clWaitForEvents",err);
210                 err |= clReleaseEvent(e);
211                 TI_CBLAS_OCL_CHKERROR("clReleaseEvent",err);
213 #endif
215                 ti_cblas_mem_free(msmc_ptr);
217                 ti_cblas_delete_kernel(__K);
219                 TI_CBLAS_DEBUG_PRINT("Finished executing %s\n", "cblas_ssyr2k");
220                 TI_CBLAS_PROFILE_REPORT("  Entire %s call (DSP) took %8.2f us\n","cblas_ssyr2k", (float) clock_diff);
221                 return ;
222         }
224 #ifdef __cplusplus
225         catch (Error err)
226         {
227                 ti_cblas_error(err.what(),err.err());
228                 return ;
229         }
230 #endif