This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
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
STRSM optimized for MSA
Signed-off-by: Kaustubh Raste <kaustubh.raste@imgtec.com>
tags/v0.2.19^2
Kaustubh Raste
9 years ago
parent
c8a7860eb3
commit
011431b9d7
1 changed files
with
8 additions
and
8 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-8
kernel/mips/strsm_kernel_LT_8x8_msa.c
+ 8
- 8
kernel/mips/strsm_kernel_LT_8x8_msa.c
View File
@@ -601,14 +601,14 @@ static void ssolve_8x1_lt_msa(FLOAT *a, FLOAT *b, FLOAT *c, BLASLONG bk)
for (k = 0; k < bk; k++)
{
a0 +
= a[0] * b[0];
a1 +
= a[1] * b[0];
a2 +
= a[2] * b[0];
a3 +
= a[3] * b[0];
a4 +
= a[4] * b[0];
a5 +
= a[5] * b[0];
a6 +
= a[6] * b[0];
a7 +
= a[7] * b[0];
c0 -
= a[0] * b[0];
c1 -
= a[1] * b[0];
c2 -
= a[2] * b[0];
c3 -
= a[3] * b[0];
c4 -
= a[4] * b[0];
c5 -
= a[5] * b[0];
c6 -
= a[6] * b[0];
c7 -
= a[7] * b[0];
a += 8;
b += 1;
Write
Preview
Loading…
Cancel
Save