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
Use generic C for D/Z nrm2 kernels on Windows to work around fpu exception bug
tags/v0.3.11^2
Martin Kroeker
GitHub
5 years ago
parent
cccd1438da
commit
7812486091
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
kernel/x86_64/KERNEL
+ 8
- 0
kernel/x86_64/KERNEL
View File
@@ -259,8 +259,12 @@ SNRM2KERNEL = nrm2_sse.S
endif
ifndef DNRM2KERNEL
ifeq ($(OSNAME),WINNT)
DNRM2KERNEL = ../arm/nrm2.c
else
DNRM2KERNEL = nrm2.S
endif
endif
ifndef QNRM2KERNEL
QNRM2KERNEL = nrm2.S
@@ -271,8 +275,12 @@ CNRM2KERNEL = znrm2_sse.S
endif
ifndef ZNRM2KERNEL
ifeq ($(OSNAME),WINNT)
ZNRM2KERNEL = ../arm/znrm2.c
else
ZNRM2KERNEL = znrm2.S
endif
endif
ifndef XNRM2KERNEL
XNRM2KERNEL = znrm2.S
Write
Preview
Loading…
Cancel
Save