Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gsll
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Selwyn Simsek
gsll
Commits
80b97f18
Commit
80b97f18
authored
Dec 05, 2015
by
Liam Healy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Incorporate tests into ASDF system definition
parent
d285aa99
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
417 additions
and
431 deletions
+417
-431
documentation/index.html
documentation/index.html
+9
-14
gsll.asd
gsll.asd
+406
-411
linear-algebra/blas3.lisp
linear-algebra/blas3.lisp
+2
-6
No files found.
documentation/index.html
View file @
80b97f18
...
...
@@ -121,22 +121,17 @@ are ported from GSL's tests.
(ql:quickload "gsll")
</pre>
<p>
To test your installation:
<pre>
(ql:quickload "lisp-unit")
(in-package :gsl)
(lisp-unit:run-tests)
</pre>
(asdf:test-system :gsll)
</pre>
<p>
The result should look something like:
<pre>
ABSOLUTE-DEVIATION: 1 assertions passed, 0 failed.
ABSOLUTE-SUM: 4 assertions passed, 0 failed.
AIRY: 73 assertions passed, 0 failed.
</pre>
<p>
... (many lines deleted) ...
<pre>
VECTOR-VARIANCE-WITH-MEAN: 10 assertions passed, 0 failed.
WEIBULL: 60 assertions passed, 0 failed.
ZETA: 6 assertions passed, 0 failed.
TOTAL: 4022 assertions passed, 1 failed, 0 execution errors.
</pre>
Unit Test Summary
| 3997 assertions total
| 3992 passed
| 5 failed
| 6 execution errors
| 0 missing tests
</pre>
<p>
You may see more failures; if you are not on a 64 bit platform you will see fewer assertions.
<h3>
License
</h3>
<p>
This software is distributed under
...
...
@@ -303,7 +298,7 @@ and arrays used internally or for function return.
<!-- Created: Feb 25 2005 -->
<!-- hhmts start -->
<small>
Time-stamp:
<2015-1
0-04
21:05:48ED
T
index
.
html
>
Time-stamp:
<2015-1
2-05
22:02:12ES
T
index
.
html
>
</small>
<!-- hhmts end -->
</div>
...
...
gsll.asd
View file @
80b97f18
This diff is collapsed.
Click to expand it.
linear-algebra/blas3.lisp
View file @
80b97f18
;; BLAS level 3, Matrix-matrix operations
;; Liam Healy, Wed Apr 26 2006 - 21:08
;; Time-stamp: <201
3-12-25 12:10:44
EST blas3.lisp>
;; Time-stamp: <201
5-12-05 09:56:16
EST blas3.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013
, 2015
Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
...
...
@@ -71,8 +71,6 @@
(
C
(
grid:make-foreign-array
element-type
:dimensions
(
matrix-product-dimensions
A
B
)
:initial-element
0
))
(
alpha
1
)
(
beta
1
)
(
uplo
:upper
)
(
side
:left
))
;; This always signals an error because you can't pass a
;; struct in CFFI yet.
(
"gsl_blas_"
:type
"hemm"
)
((
side
cblas-side
)
(
uplo
cblas-uplo
)
(
alpha
:element-c-type
)
((
mpointer
A
)
:pointer
)
((
mpointer
B
)
:pointer
)
...
...
@@ -99,8 +97,6 @@
((
A
grid:matrix
)
(
B
grid:matrix
)
&optional
(
alpha
1
)
(
uplo
:upper
)
(
TransA
:notrans
)
(
diag
:nonunit
)
(
side
:left
))
;; This signals an error for complex arguments because you can't pass a
;; struct in CFFI yet.
(
"gsl_blas_"
:type
"trsm"
)
((
side
cblas-side
)
(
uplo
cblas-uplo
)
(
TransA
cblas-transpose
)
(
diag
cblas-diag
)
...
...
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