kokkos-kernels: initial commit (#12934)

This commit is contained in:
Christoph Junghans 2019-09-25 09:00:01 -06:00 committed by GitHub
parent 7a11a2ccdb
commit e123058721
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 106 additions and 0 deletions

View file

@ -0,0 +1,53 @@
--- ./src/Makefile 2018-11-05 13:28:12.000000000 -0700
+++ ./src/Makefile 2018-11-08 16:01:05.000000000 -0700
@@ -1,37 +1,24 @@
+include $(KOKKOS_PATH)/Makefile.kokkos
#=======================================================================
#=================== Settings ==========================================
#=======================================================================
-ifndef KOKKOSKERNELS_PATH
- MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
- KOKKOSKERNELS_PATH = $(subst Makefile.minimal,,$(MAKEFILE_PATH))..
-endif
-
-KOKKOS_PATH = ${KOKKOSKERNELS_PATH}/../kokkos
-
-
-KOKKOS_DEVICES=OpenMP
-
-KOKKOSKERNELS_SCALARS="'double,complex<double>'"
+KOKKOSKERNELS_SCALARS="'double'"
KOKKOSKERNELS_OPTIONS=eti-only
-ifndef PREFIX
- PREFIX = ${CURDIR}/install
-endif
-KOKKOSKERNELS_INSTALL_PATH = ${PREFIX}
default: build
CXX = g++
-CXXFLAGS = -O3 -g
+CXXFLAGS = -O3
LINK = ${CXX}
-LINKFLAGS =
+LINKFLAGS = $(KOKKOS_LINK_FLAGS)
DEPFLAGS = -M
OBJ =
-LIB = -lpthread
+LIB = $(KOKKOS_LIBS)
#=======================================================================
@@ -91,5 +78,4 @@
build: kokkoskernels-build-lib
-install: kokkoskernels-install
-
+install: kokkoskernels-install
\ No newline at end of file

View file

@ -0,0 +1,53 @@
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class KokkosKernels(MakefilePackage):
"""Kokkos C++ Performance Portability Programming EcoSystem: Math Kernels -
Provides BLAS, Sparse BLAS and Graph Kernels."""
homepage = "https://github.com/kokkos/kokkos-kernels"
url = "https://github.com/kokkos/kokkos-kernels/archive/2.7.00.tar.gz"
version('2.7.00', 'dfb21f26da9f1f976d84826a1510d91e')
version('2.6.00', 'ef8ba7509d82417dbc82a2f021886949')
version('2.5.00', '94f4bd78b36b9c53c18df3ccfd552041')
version('develop', git='https://github.com/kokkos/kokkos-kernels',
branch='develop')
# make sure kokkos kernels version matches kokkos
depends_on('kokkos@2.5.00', when='@2.5.00')
depends_on('kokkos@2.6.00', when='@2.6.00')
depends_on('kokkos@2.7.00', when='@2.7.00')
depends_on('kokkos@develop', when='@develop')
patch('makefile.patch')
def edit(self, spec, prefix):
makefile = FileFilter("src/Makefile")
makefile.filter('CXX = .*', 'CXX = ' + env['CXX'])
def build(self, spec, prefix):
with working_dir('build', create=True):
makefile_path = '%s%s' % (self.stage.source_path, '/src/Makefile')
copy(makefile_path, 'Makefile')
make_args = [
'KOKKOSKERNELS_INSTALL_PATH=%s' % prefix,
'KOKKOSKERNELS_PATH=%s' % self.stage.source_path,
'KOKKOS_PATH=%s' % spec['kokkos'].prefix
]
make('build', *make_args)
def install(self, spec, prefix):
with working_dir('build', create=False):
make_args = [
'KOKKOSKERNELS_INSTALL_PATH=%s' % prefix,
'KOKKOSKERNELS_PATH=%s' % self.stage.source_path,
'KOKKOS_PATH=%s' % spec['kokkos'].prefix
]
make('install', *make_args)