-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add/fix things related to tensors and BLAS #228
Open
jeffhammond
wants to merge
3
commits into
ORNL:master
Choose a base branch
from
jeffhammond:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,7 +329,7 @@ in support of adding linear algebra to the C++ Standard Library. | |
and Cerebras' [Wafer Scale | ||
Engine](https://www.cerebras.net/product/#chip). Several large | ||
computer system vendors offer optimized linear algebra libraries | ||
based on or closely resembling the BLAS; these include AMD's BLIS, | ||
that implement the BLAS API; these include AMD's fork of BLIS, | ||
ARM's Performance Libraries, Cray's LibSci, Intel's Math Kernel | ||
Library (MKL), IBM's Engineering and Scientific Subroutine Library | ||
(ESSL), and NVIDIA's cuBLAS. | ||
|
@@ -416,10 +416,11 @@ problem whose solutions could be parameterized for a variety of | |
computer architectures. See, for example, [Goto and van de Geijn | ||
2008](https://doi.org/10.1145/1356052.1356053). There are optimized | ||
third-party BLAS implementations for common architectures, like | ||
[ATLAS](http://math-atlas.sourceforge.net/) and | ||
[GotoBLAS](https://www.tacc.utexas.edu/research-development/tacc-software/gotoblas2). | ||
[ATLAS](http://math-atlas.sourceforge.net/), | ||
[OpenBLAS](https://github.com/xianyi/OpenBLAS), | ||
and [BLIS](https://github.com/flame/blis). | ||
A (slow but correct) [reference implementation of the | ||
BLAS](http://www.netlib.org/blas/#_reference_blas_version_3_8_0) | ||
BLAS](http://www.netlib.org/blas/) | ||
exists and it has a liberal software license for easy reuse. | ||
|
||
We have experience in the exercise of wrapping a C or Fortran BLAS | ||
|
@@ -834,12 +835,16 @@ to some multi-indices in the Cartesian product of extents. | |
### Tensors | ||
|
||
We exclude tensors from this proposal, for the following reasons. | ||
First, tensor libraries naturally build on optimized dense linear | ||
First, tensor libraries often build on optimized dense linear | ||
algebra libraries like the BLAS, so a linear algebra library is a good | ||
first step. Second, `mdspan` has natural use as a | ||
first step ([Di Napoli et al.](https://arxiv.org/abs/1307.2100)), | ||
although it is likely that a native implementation is better | ||
([Matthews](https://arxiv.org/abs/1607.00291), | ||
[Springer and Paolo Bientinesi](https://arxiv.org/abs/1607.00145)). | ||
Second, `mdspan` has natural use as a | ||
low-level representation of dense tensors, so we are already partway | ||
there. Third, even simple tensor operations that naturally generalize | ||
the BLAS have infintely many more cases than linear algebra. It's not | ||
the BLAS have significantly more cases than linear algebra. It's not | ||
clear to us which to optimize. Fourth, even though linear algebra is | ||
a special case of tensor algebra, users of linear algebra have | ||
different interface expectations than users of tensor algebra. Thus, | ||
|
@@ -1597,7 +1602,7 @@ pioneering efforts and history lessons. | |
SLATE Working Notes, Innovative Computing Laboratory, University of | ||
Tennessee Knoxville, Feb. 2018. | ||
|
||
* K. Goto and R. A. van de Geijn, "Anatomy of high-performance matrix | ||
* K. Goto and R. A. van de Geijn, ["Anatomy of high-performance matrix | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch! |
||
multiplication,"](https://doi.org/10.1145/1356052.1356053), *ACM | ||
Transactions on Mathematical Software* (TOMS), Vol. 34, No. 3, May | ||
2008. | ||
|
@@ -1614,6 +1619,10 @@ pioneering efforts and history lessons. | |
* D. Vandevoorde and N. A. Josuttis, "C++ Templates: The Complete | ||
Guide," Addison-Wesley Professional, 2003. | ||
|
||
* Field G. Van Zee and Robert A. van de Geijn, | ||
["BLIS: A Framework for Rapidly Instantiating BLAS Functionality,"](https://doi.org/10.1145/2764454), | ||
*ACM Transactions on Mathematical Software* (TOMS), Vol. 41, No. 3, June 2015. | ||
|
||
## Wording | ||
|
||
> Text in blockquotes is not proposed wording, but rather instructions for generating proposed wording. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.