Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgvanzee committed Dec 3, 2012
0 parents commit 00f3498
Show file tree
Hide file tree
Showing 885 changed files with 112,954 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
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

30 changes: 30 additions & 0 deletions AUTHORS
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 added CHANGELOG
Empty file.
9 changes: 9 additions & 0 deletions INSTALL
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
31 changes: 31 additions & 0 deletions LICENSE
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.

Loading

0 comments on commit 00f3498

Please sign in to comment.