Skip to content

Commit

Permalink
Update links for SuiteSparse
Browse files Browse the repository at this point in the history
Apparently Tim Davis moved from Florida to Texas A&M
  • Loading branch information
tkelman committed Sep 13, 2014
1 parent 753cd39 commit 8b5aed0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ their own licenses:
- [OPENBLAS](https://raw.github.com/xianyi/OpenBLAS/master/LICENSE)
- [LAPACK](http:https://netlib.org/lapack/LICENSE.txt)
- [PCRE](http:https://www.pcre.org/licence.txt)
- [SUITESPARSE](http:https://www.cise.ufl.edu/research/sparse/SuiteSparse/current/SuiteSparse/)
- [SUITESPARSE](http:https://faculty.cse.tamu.edu/davis/suitesparse.html)


The following components of Julia's standard library have separate licenses:

- base/fftw.jl (see [FFTW](http:https://fftw.org/doc/License-and-Copyright.html))
- base/sparse/csparse.jl (LGPL-2.1+)
- base/linalg/umfpack.jl (see [SUITESPARSE](http:https://www.cise.ufl.edu/research/sparse/SuiteSparse/current/SuiteSparse/))
- base/linalg/cholmod.jl (see [SUITESPARSE](http:https://www.cise.ufl.edu/research/sparse/SuiteSparse/current/SuiteSparse/))
- base/linalg/umfpack.jl (see [SUITESPARSE](http:https://faculty.cse.tamu.edu/davis/suitesparse.html))
- base/linalg/cholmod.jl (see [SUITESPARSE](http:https://faculty.cse.tamu.edu/davis/suitesparse.html))


Julia builds the following libraries by default, but does not use them itself:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Julia uses the following external libraries, which are automatically downloaded
[OpenBLAS]: https://github.com/xianyi/OpenBLAS
[LAPACK]: http:https://www.netlib.org/lapack/
[MKL]: http:https://software.intel.com/en-us/articles/intel-mkl/
[SuiteSparse]: http:https://www.cise.ufl.edu/research/sparse/SuiteSparse/
[SuiteSparse]: http:https://faculty.cse.tamu.edu/davis/suitesparse.html
[AMOS]: http:https://netlib.org/amos
[ARPACK]: http:https://forge.scilab.org/index.php/p/arpack-ng/
[FFTW]: http:https://www.fftw.org/
Expand Down
2 changes: 1 addition & 1 deletion deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ SUITESPARSE_MFLAGS = CC="$(CC)" CXX="$(CXX)" F77="$(FC)" AR="$(AR)" RANLIB="$(RA
UMFPACK_CONFIG="$(UMFPACK_CONFIG)" CHOLMOD_CONFIG="$(CHOLMOD_CONFIG)"

SuiteSparse-$(SUITESPARSE_VER).tar.gz:
$(JLDOWNLOAD) $@ http:https://www.cise.ufl.edu/research/sparse/SuiteSparse/$@
$(JLDOWNLOAD) $@ http:https://faculty.cse.tamu.edu/davis/SuiteSparse/$@
SuiteSparse-$(SUITESPARSE_VER)/Makefile: SuiteSparse-$(SUITESPARSE_VER).tar.gz
$(JLCHECKSUM) $<
mkdir -p SuiteSparse-$(SUITESPARSE_VER)
Expand Down
2 changes: 1 addition & 1 deletion doc/stdlib/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Linear Algebra

.. currentmodule:: Base

Linear algebra functions in Julia are largely implemented by calling functions from `LAPACK <http:https://www.netlib.org/lapack/>`_. Sparse factorizations call functions from `SuiteSparse <http:https://www.cise.ufl.edu/research/sparse>`_.
Linear algebra functions in Julia are largely implemented by calling functions from `LAPACK <http:https://www.netlib.org/lapack/>`_. Sparse factorizations call functions from `SuiteSparse <http:https://faculty.cse.tamu.edu/davis/suitesparse.html>`_.

.. function:: *(A, B)
:noindex:
Expand Down

6 comments on commit 8b5aed0

@pao
Copy link
Member

@pao pao commented on 8b5aed0 Sep 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaBackports; we also mirror SuiteSparse, right?

@ivarne
Copy link
Member

@ivarne ivarne commented on 8b5aed0 Sep 14, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This applies cleanly, but I don't know SuiteSparse, and @pao has an unanswered question. I'll let this wait until someone else confirms that it is safe to backport.

@ViralBShah
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do mirror SuiteSparse and we should probably backport just for the new URLs.

@pao
Copy link
Member

@pao pao commented on 8b5aed0 Sep 14, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, perhaps should have been less terse--but the intent was just to make sure the URL change (this commit) was backported. The mirror question was just to verify to myself why we didn't get tons of reports of failing to fetch the dependency, and that question was answered back on the pull request.

@ivarne
Copy link
Member

@ivarne ivarne commented on 8b5aed0 Sep 14, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RGreat! I have 100 unread issues after this weekend, so I'll probably see the PR in a few days. I'll cherry-pick tomorrow if nobody beats me to it.

@ivarne
Copy link
Member

@ivarne ivarne commented on 8b5aed0 Sep 15, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backported in de97ddb

Please sign in to comment.