-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 00f3498
Showing
885 changed files
with
112,954 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# generic files to ignore | ||
|
||
*~ # emacs backup files | ||
*.swp # vim swap file | ||
*.out # anything | ||
|
||
# compiler-related | ||
|
||
*.o # object files | ||
*.a # static library archives | ||
*.x # test executables | ||
|
||
# build system files | ||
|
||
config.mk | ||
|
||
# directories with build products | ||
|
||
lib | ||
obj | ||
|
||
# makefile fragments | ||
|
||
.fragment.mk | ||
fragment.mk | ||
|
||
# misc. | ||
|
||
output*.m | ||
|
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Acknowledgements | ||
|
||
--- | ||
|
||
The BLIS framework was primarily authored by | ||
|
||
Field Van Zee (The University of Texas at Austin) | ||
|
||
but many others gave input and feedback as it was initially | ||
conceived, designed, and developed, including: | ||
|
||
John Gunnels (IBM, T.J. Watson Research Center) | ||
Jeff Hammond (Argonne National Laboratory) | ||
Francisco Igual (Universidad Complutense de Madrid) | ||
Lee Killough (Appro International) | ||
Tze Meng Low (The University of Texas at Austin) | ||
Bryan Marker (The University of Texas at Austin) | ||
Rhys Ulerich (The University of Texas at Austin) | ||
Robert van de Geijn (The University of Texas at Austin) | ||
|
||
Thanks go the following individuals for helping port very early | ||
versions of BLIS to new architectures as proofs-of-concept: | ||
|
||
Francisco Igual (The University of Texas at Austin) | ||
Tyler Smith (The University of Texas at Austin) | ||
|
||
BLIS's development was partially funded by grants from Microsoft and | ||
the National Science Foundation (Awards CCF-0917167 and OCI-1148125). | ||
|
||
|
Empty file.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
To be written. | ||
|
||
discuss: | ||
- build requirements | ||
- configuration | ||
- kernel creation (if applicable) | ||
- compilation | ||
- installation | ||
- linking |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
The BLIS framework is licensed under the following license, typically | ||
known as the "new" or "modified" or "3-clause" BSD license. | ||
|
||
--- | ||
|
||
Copyright (C) 2012, The University of Texas | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
- Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
- Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
- Neither the name of The University of Texas nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
Oops, something went wrong.