From ebc3b97342848b1cdf8e97bc3a0d2283a367dab3 Mon Sep 17 00:00:00 2001 From: Valeriu Codreanu Date: Mon, 25 Jan 2016 18:20:13 +0100 Subject: [PATCH] added top-level CMakeLists.txt for sparse_linear_algebra --- CMakeLists.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..176ca6d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,34 @@ + +# ================================================================================================== +# This file is part of the CodeVault project. The project is licensed under Apache Version 2.0. +# CodeVault is part of the EU-project PRACE-4IP (WP7.3.C). +# +# Author(s): +# Valeriu Codreanu +# +# ================================================================================================== + +# CMake project +cmake_minimum_required(VERSION 2.8.10 FATAL_ERROR) +project("2_sparse") +include(${CMAKE_CURRENT_SOURCE_DIR}/../../cmake/common.cmake) + +# ================================================================================================== + +# Dwarf 2: Sparse Linear Algebra +message("--------------------") +message("Dwarf 2: Sparse Linear Algebra:") +message("--------------------") +set(DWARF_PREFIX 2_sparse) # The prefix of the name of the binaries produced + +# Add the examples +add_subdirectory(krylov) +add_subdirectory(spgemm/mkl_shmem) +#add_subdirectory(spgemm/mkl_xphi) +add_subdirectory(spmv/mkl_shmem) + +# ================================================================================================== + + + + -- GitLab