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
[ZARCH] Fix bug in max/min functions
tags/v0.3.6^2
maamountki
GitHub
7 years ago
parent
dc4d3bccd5
commit
fcd814a8d2
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
8 changed files
with
8 additions
and
8 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
kernel/zarch/camax.c
+1
-1
kernel/zarch/camin.c
+1
-1
kernel/zarch/icamax.c
+1
-1
kernel/zarch/icamin.c
+1
-1
kernel/zarch/izamax.c
+1
-1
kernel/zarch/izamin.c
+1
-1
kernel/zarch/zamax.c
+1
-1
kernel/zarch/zamin.c
+ 1
- 1
kernel/zarch/camax.c
View File
@@ -198,7 +198,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
maxf = camax_kernel_32(n1, x);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/camin.c
View File
@@ -198,7 +198,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
minf = camin_kernel_32(n1, x);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/icamax.c
View File
@@ -280,7 +280,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
max = icamax_kernel_32(n1, x, &maxf);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/icamin.c
View File
@@ -280,7 +280,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
min = icamin_kernel_32(n1, x, &minf);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/izamax.c
View File
@@ -199,7 +199,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
max = izamax_kernel_16(n1, x, &maxf);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/izamin.c
View File
@@ -199,7 +199,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
min = izamin_kernel_16(n1, x, &minf);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/zamax.c
View File
@@ -152,7 +152,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
maxf = zamax_kernel_16(n1, x);
ix = n1 * 2;
i = n1;
}
else
+ 1
- 1
kernel/zarch/zamin.c
View File
@@ -152,7 +152,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
minf = zamin_kernel_16(n1, x);
ix = n1 * 2;
i = n1;
}
else
Write
Preview
Loading…
Cancel
Save