Skip to content

Commit

Permalink
Update LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Feb 17, 2017
1 parent 5e7eee0 commit 37f2a72
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 5 deletions.
45 changes: 45 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
//@HEADER
// ************************************************************************
//
// KokkosKernels 0.9: Linear Algebra and Graph Kernels
// Copyright 2017 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// KokkosKernels is licensed under 3-clause BSD terms of use:
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. 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.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "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 SANDIA CORPORATION OR THE
// 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.
//
// Questions? Contact Siva Rajamanickam (srajama@sandia.gov)
//
// ************************************************************************
//@HEADER
*/

15 changes: 10 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
The Kernels subpackage of Tpetra ("TpetraKernels"/"KokkosKernels")
contains local computational kernels. "Local" means no MPI or other
distributed-memory communication. "Computational kernels" are coarse-grained
operations; they take a lot of work and make sense to parallelize inside using
Kokkos. Computational kernels in this subpackage include the following:
KokkosKernels provides dense and sparse linear algebra as well graph computing
local computational kernels using the Kokkos programming model.
"Local" means no MPI or other distributed-memory communication.
"Computational kernels" are coarse-grained operations; they take a lot of work
and make sense to parallelize inside using Kokkos.

Computational kernels in this subpackage include the following:

- (Multi)vector dot products, norms, and updates (AXPY-like
operations that add vectors together entry-wise)
Expand All @@ -11,6 +13,9 @@ The Kernels subpackage of Tpetra ("TpetraKernels"/"KokkosKernels")
- Other operations that the Core subpackage of Tpetra (TpetraCore)
needs

Kokkos is licensed under standard 3-clause BSD terms of use. For specifics
see the LICENSE file contained in the repository or distribution.

We organize this directory as follows:

1. Public interfaces to computational kernels live in the src/
Expand Down

0 comments on commit 37f2a72

Please sign in to comment.