This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Merge pull request
#1358
from martin-frbg/unused_vars
Clean up spurious unused variables in the kernels
tags/v0.3.0
Martin Kroeker
GitHub
8 years ago
parent
8e75f7dcb4
3fea849bbf
commit
6157d0902a
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
12 changed files
with
16 additions
and
13 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
kernel/generic/zimatcopy_cnc.c
+1
-1
kernel/generic/zimatcopy_rn.c
+1
-1
kernel/generic/zimatcopy_rnc.c
+3
-0
kernel/setparam-ref.c
+0
-1
kernel/x86_64/cgemv_n_4.c
+0
-1
kernel/x86_64/dgemv_n_4.c
+0
-1
kernel/x86_64/dsymv_U.c
+8
-4
kernel/x86_64/dtrmm_kernel_4x8_haswell.c
+2
-0
kernel/x86_64/dtrsm_kernel_LN_bulldozer.c
+0
-1
kernel/x86_64/sgemv_n_4.c
+0
-1
kernel/x86_64/ssymv_U.c
+0
-1
kernel/x86_64/zgemv_n_4.c
+ 1
- 1
kernel/generic/zimatcopy_cnc.c
View File
@@ -35,7 +35,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int CNAME(BLASLONG rows, BLASLONG cols, FLOAT alpha_r, FLOAT alpha_i, FLOAT *a, BLASLONG lda)
{
BLASLONG i,j,ia;
FLOAT *aptr
,*bptr
;
FLOAT *aptr;
FLOAT a0, a1;
if ( rows <= 0 ) return(0);
+ 1
- 1
kernel/generic/zimatcopy_rn.c
View File
@@ -34,7 +34,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int CNAME(BLASLONG rows, BLASLONG cols, FLOAT alpha_r, FLOAT alpha_i, FLOAT *a, BLASLONG lda)
{
BLASLONG i,j,ia;
FLOAT *aptr
,*bptr
;
FLOAT *aptr;
FLOAT a0, a1;
if ( rows <= 0 ) return(0);
+ 1
- 1
kernel/generic/zimatcopy_rnc.c
View File
@@ -34,7 +34,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
int CNAME(BLASLONG rows, BLASLONG cols, FLOAT alpha_r, FLOAT alpha_i, FLOAT *a, BLASLONG lda)
{
BLASLONG i,j,ia;
FLOAT *aptr
,*bptr
;
FLOAT *aptr;
FLOAT a0, a1;
if ( rows <= 0 ) return(0);
+ 3
- 0
kernel/setparam-ref.c
View File
@@ -684,6 +684,9 @@ static void init_parameter(void) {
int l2 = get_l2_size();
(void) l2; /* dirty trick to suppress unused variable warning for targets */
/* where the GEMM unrolling parameters do not depend on l2 */
TABLE_NAME.sgemm_q = SGEMM_DEFAULT_Q;
TABLE_NAME.dgemm_q = DGEMM_DEFAULT_Q;
TABLE_NAME.cgemm_q = CGEMM_DEFAULT_Q;
+ 0
- 1
kernel/x86_64/cgemv_n_4.c
View File
@@ -216,7 +216,6 @@ static void add_y(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_dest,FLOAT a
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha_r,FLOAT alpha_i, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer)
{
BLASLONG i;
BLASLONG j;
FLOAT *a_ptr;
FLOAT *x_ptr;
FLOAT *y_ptr;
+ 0
- 1
kernel/x86_64/dgemv_n_4.c
View File
@@ -204,7 +204,6 @@ static void add_y(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_dest)
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer)
{
BLASLONG i;
BLASLONG j;
FLOAT *a_ptr;
FLOAT *x_ptr;
FLOAT *y_ptr;
+ 0
- 1
kernel/x86_64/dsymv_U.c
View File
@@ -164,7 +164,6 @@ int CNAME(BLASLONG m, BLASLONG offset, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOA
FLOAT temp2;
FLOAT *xp, *yp;
FLOAT *a0,*a1,*a2,*a3;
FLOAT at0,at1,at2,at3;
FLOAT tmp1[4];
FLOAT tmp2[4];
+ 8
- 4
kernel/x86_64/dtrmm_kernel_4x8_haswell.c
View File
@@ -167,24 +167,28 @@ int CNAME(BLASLONG bm,BLASLONG bn,BLASLONG bk,FLOAT alpha,FLOAT* ba,FLOAT* bb,FL
FLOAT res4_0;
FLOAT res4_1;
/*
FLOAT res4_2;
FLOAT res4_3;
*/
FLOAT res5_0;
FLOAT res5_1;
/*
FLOAT res5_2;
FLOAT res5_3;
*/
FLOAT res6_0;
FLOAT res6_1;
/*
FLOAT res6_2;
FLOAT res6_3;
*/
FLOAT res7_0;
FLOAT res7_1;
/*
FLOAT res7_2;
FLOAT res7_3;
*/
FLOAT a0;
FLOAT a1;
+ 2
- 0
kernel/x86_64/dtrsm_kernel_LN_bulldozer.c
View File
@@ -438,7 +438,9 @@ static inline void solve(BLASLONG m, BLASLONG n, FLOAT *a, FLOAT *b, FLOAT *c, B
*(cj + i) = bb;
b ++;
/*
BLASLONG i1 = i & -4 ;
*/
FLOAT t0,t1,t2,t3;
k=0;
+ 0
- 1
kernel/x86_64/sgemv_n_4.c
View File
@@ -292,7 +292,6 @@ static void add_y(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_dest)
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer)
{
BLASLONG i;
BLASLONG j;
FLOAT *a_ptr;
FLOAT *x_ptr;
FLOAT *y_ptr;
+ 0
- 1
kernel/x86_64/ssymv_U.c
View File
@@ -164,7 +164,6 @@ int CNAME(BLASLONG m, BLASLONG offset, FLOAT alpha, FLOAT *a, BLASLONG lda, FLOA
FLOAT temp2;
FLOAT *xp, *yp;
FLOAT *a0,*a1,*a2,*a3;
FLOAT at0,at1,at2,at3;
FLOAT tmp1[4];
FLOAT tmp2[4];
+ 0
- 1
kernel/x86_64/zgemv_n_4.c
View File
@@ -218,7 +218,6 @@ static void add_y(BLASLONG n, FLOAT *src, FLOAT *dest, BLASLONG inc_dest,FLOAT a
int CNAME(BLASLONG m, BLASLONG n, BLASLONG dummy1, FLOAT alpha_r,FLOAT alpha_i, FLOAT *a, BLASLONG lda, FLOAT *x, BLASLONG inc_x, FLOAT *y, BLASLONG inc_y, FLOAT *buffer)
{
BLASLONG i;
BLASLONG j;
FLOAT *a_ptr;
FLOAT *x_ptr;
FLOAT *y_ptr;
Write
Preview
Loading…
Cancel
Save