This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
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
[ZARCH] Fix bug in iamax/iamin/imax/imin
tags/v0.3.6^2
maamountki
GitHub
6 years ago
parent
b111829226
commit
c8ef9fb220
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
12 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
kernel/zarch/icamax.c
+1
-0
kernel/zarch/icamin.c
+1
-0
kernel/zarch/idamax.c
+1
-0
kernel/zarch/idamin.c
+1
-0
kernel/zarch/idmax.c
+1
-0
kernel/zarch/idmin.c
+1
-0
kernel/zarch/isamax.c
+1
-0
kernel/zarch/isamin.c
+1
-0
kernel/zarch/ismax.c
+1
-0
kernel/zarch/ismin.c
+1
-0
kernel/zarch/izamax.c
+1
-0
kernel/zarch/izamin.c
+ 1
- 0
kernel/zarch/icamax.c
View File
@@ -283,6 +283,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
max = 0;
maxf = CABS1(x,0);
ix += 2;
i++;
+ 1
- 0
kernel/zarch/icamin.c
View File
@@ -283,6 +283,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
min = 0;
minf = CABS1(x,0);
ix += 2;
i++;
+ 1
- 0
kernel/zarch/idamax.c
View File
@@ -206,6 +206,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = ABS(x[0]);
i++;
}
+ 1
- 0
kernel/zarch/idamin.c
View File
@@ -206,6 +206,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = ABS(x[0]);
i++;
}
+ 1
- 0
kernel/zarch/idmax.c
View File
@@ -182,6 +182,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = x[0];
i++;
}
+ 1
- 0
kernel/zarch/idmin.c
View File
@@ -182,6 +182,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = x[0];
i++;
}
+ 1
- 0
kernel/zarch/isamax.c
View File
@@ -249,6 +249,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = ABS(x[0]);
i++;
}
+ 1
- 0
kernel/zarch/isamin.c
View File
@@ -249,6 +249,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = ABS(x[0]);
i++;
}
+ 1
- 0
kernel/zarch/ismax.c
View File
@@ -225,6 +225,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = x[0];
i++;
}
+ 1
- 0
kernel/zarch/ismin.c
View File
@@ -225,6 +225,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = x[0];
i++;
}
+ 1
- 0
kernel/zarch/izamax.c
View File
@@ -204,6 +204,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
max = 0;
maxf = CABS1(x,0);
ix += 2;
i++;
+ 1
- 0
kernel/zarch/izamin.c
View File
@@ -204,6 +204,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
min = 0;
minf = CABS1(x,0);
ix += 2;
i++;
Write
Preview
Loading…
Cancel
Save