Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
36fdfe68
Commit
36fdfe68
authored
Feb 04, 2016
by
Davis King
Browse files
Added a copy of CBLAS so we can use it when linking against a BLAS that
doesn't have it.
parent
64c7e966
Changes
167
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
105 additions
and
0 deletions
+105
-0
dlib/external/cblas/scasumsub.f
dlib/external/cblas/scasumsub.f
+15
-0
dlib/external/cblas/scnrm2sub.f
dlib/external/cblas/scnrm2sub.f
+15
-0
dlib/external/cblas/sdotsub.f
dlib/external/cblas/sdotsub.f
+15
-0
dlib/external/cblas/sdsdotsub.f
dlib/external/cblas/sdsdotsub.f
+15
-0
dlib/external/cblas/snrm2sub.f
dlib/external/cblas/snrm2sub.f
+15
-0
dlib/external/cblas/zdotcsub.f
dlib/external/cblas/zdotcsub.f
+15
-0
dlib/external/cblas/zdotusub.f
dlib/external/cblas/zdotusub.f
+15
-0
No files found.
dlib/external/cblas/scasumsub.f
0 → 100644
View file @
36fdfe68
c
scasumsub
.
f
c
c
The
program
is
a
fortran
wrapper
for
scasum
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
scasumsub
(
n
,
x
,
incx
,
asum
)
c
external
scasum
real
scasum
,
asum
integer
n
,
incx
complex
x
(
*
)
c
asum
=
scasum
(
n
,
x
,
incx
)
return
end
dlib/external/cblas/scnrm2sub.f
0 → 100644
View file @
36fdfe68
c
scnrm2sub
.
f
c
c
The
program
is
a
fortran
wrapper
for
scnrm2
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
scnrm2sub
(
n
,
x
,
incx
,
nrm2
)
c
external
scnrm2
real
scnrm2
,
nrm2
integer
n
,
incx
complex
x
(
*
)
c
nrm2
=
scnrm2
(
n
,
x
,
incx
)
return
end
dlib/external/cblas/sdotsub.f
0 → 100644
View file @
36fdfe68
c
sdotsub
.
f
c
c
The
program
is
a
fortran
wrapper
for
sdot
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
sdotsub
(
n
,
x
,
incx
,
y
,
incy
,
dot
)
c
external
sdot
real
sdot
integer
n
,
incx
,
incy
real
x
(
*
),
y
(
*
),
dot
c
dot
=
sdot
(
n
,
x
,
incx
,
y
,
incy
)
return
end
dlib/external/cblas/sdsdotsub.f
0 → 100644
View file @
36fdfe68
c
sdsdotsub
.
f
c
c
The
program
is
a
fortran
wrapper
for
sdsdot
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
sdsdotsub
(
n
,
x
,
incx
,
y
,
incy
,
dot
)
c
external
sdsdot
real
sdsdot
,
dot
integer
n
,
incx
,
incy
real
x
(
*
),
y
(
*
)
c
dot
=
sdsdot
(
n
,
x
,
incx
,
y
,
incy
)
return
end
dlib/external/cblas/snrm2sub.f
0 → 100644
View file @
36fdfe68
c
snrm2sub
.
f
c
c
The
program
is
a
fortran
wrapper
for
snrm2
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
snrm2sub
(
n
,
x
,
incx
,
nrm2
)
c
external
snrm2
real
snrm2
,
nrm2
integer
n
,
incx
real
x
(
*
)
c
nrm2
=
snrm2
(
n
,
x
,
incx
)
return
end
dlib/external/cblas/zdotcsub.f
0 → 100644
View file @
36fdfe68
c
zdotcsub
.
f
c
c
The
program
is
a
fortran
wrapper
for
zdotc
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
zdotcsub
(
n
,
x
,
incx
,
y
,
incy
,
dotc
)
c
external
zdotc
double
complex
zdotc
,
dotc
integer
n
,
incx
,
incy
double
complex
x
(
*
),
y
(
*
)
c
dotc
=
zdotc
(
n
,
x
,
incx
,
y
,
incy
)
return
end
dlib/external/cblas/zdotusub.f
0 → 100644
View file @
36fdfe68
c
zdotusub
.
f
c
c
The
program
is
a
fortran
wrapper
for
zdotu
.
c
Witten
by
Keita
Teranishi
.
2
/
11
/
1998
c
subroutine
zdotusub
(
n
,
x
,
incx
,
y
,
incy
,
dotu
)
c
external
zdotu
double
complex
zdotu
,
dotu
integer
n
,
incx
,
incy
double
complex
x
(
*
),
y
(
*
)
c
dotu
=
zdotu
(
n
,
x
,
incx
,
y
,
incy
)
return
end
Prev
1
…
5
6
7
8
9
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment