Skip to content

Commit 27fc836

Browse files
committed
adding headers
1 parent 27df2d4 commit 27fc836

File tree

143 files changed

+615
-314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+615
-314
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ list(APPEND CMAKE_MODULE_PATH "${ECRC_CMAKE_MODULE_PATH}")
4747
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules")
4848
include(EcrcInit)
4949
include(GenPkgConfig)
50-
include(FindPkgConfig)
50+
find_package(PkgConfig REQUIRED)
5151

5252
# Create project and check C compiler
5353
cmake_policy(SET CMP0048 NEW)
@@ -173,6 +173,9 @@ if(STARPU)
173173
if(STARPU_FOUND)
174174
include_directories(${STARPU_INCLUDE_DIRS})
175175
link_directories(${STARPU_LIBRARY_DIRS})
176+
link_directories(${STARPU_SHM_STATIC_LIBRARY_DIRS})
177+
#message(STATUS "STARPU_SHM_STATIC_LIBRARY_DIRS=${STARPU_SHM_STATIC_LIBRARY_DIRS}")
178+
#message(STATUS "STARPU_SHM_STATIC_FOUND=${STARPU_SHM_FOUND_STATIC}")
176179
add_definitions("-DSTARPU")
177180
list(APPEND DOXYGEN_ENABLED_SECTIONS STARPU)
178181
else()

COPYRIGHTS.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2017-2022 King Abdullah University of Science and
2+
* Technology (KAUST). All rights reserved.

Jenkinsfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ pipeline {
3030
# if any command exits with value other than 0 (zero)
3131
3232
# loads modules
33-
module load gcc/5.5.0
34-
module load mkl/2018-initial
35-
module load openmpi/3.0.0-gcc-5.5.0
36-
module load starpu/1.2.3-gcc-5.5.0-mkl-openmpi-3.0.0
37-
module load gsl/2.4-gcc-5.5.0
38-
module load cmake/3.9.6
33+
module load gcc/10.2.0
34+
module load mkl/2020.0.166
35+
module load openmpi/4.1.0-gcc-10.2.0
36+
module load starpu/1.2.10-gcc-10.2.0-mkl-openmpi-4.1.0
37+
module load gsl/2.6-gcc-10.2.0
38+
module load cmake/3.21.2
3939
4040
# variables
4141
BUILDDIR="$WORKSPACE/build/"
@@ -63,12 +63,12 @@ pipeline {
6363
# if any command exits with value other than 0 (zero)
6464
6565
# loads modules
66-
module load gcc/5.5.0
67-
module load mkl/2018-initial
68-
module load openmpi/3.0.0-gcc-5.5.0
69-
module load starpu/1.2.3-gcc-5.5.0-mkl-openmpi-3.0.0
70-
module load gsl/2.4-gcc-5.5.0
71-
module load cmake/3.9.6
66+
module load gcc/10.2.0
67+
module load mkl/2020.0.166
68+
module load openmpi/4.1.0-gcc-10.2.0
69+
module load starpu/1.2.10-gcc-10.2.0-mkl-openmpi-4.1.0
70+
module load gsl/2.6-gcc-10.2.0
71+
module load cmake/3.21.2
7272
7373
# variables
7474
BUILDDIR="$WORKSPACE/build/"

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

cmake_modules/ecrc

Submodule ecrc updated 57 files

examples/approximation/dense.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! @copyright (c) 2017 King Abdullah University of Science and
1+
/*! @copyright (c) 2017-2022 King Abdullah University of Science and
22
* Technology (KAUST). All rights reserved.
33
*
44
* STARS-H is a software package, provided by King Abdullah
55
* University of Science and Technology (KAUST)
66
*
77
* @file examples/approximation/dense.c
8-
* @version 0.3.0
8+
* @version 0.3.1
99
* @author Aleksandr Mikhalev
1010
* @date 2017-11-07
1111
* */

examples/approximation/minimal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! @copyright (c) 2017 King Abdullah University of Science and
1+
/*! @copyright (c) 2017-2022 King Abdullah University of Science and
22
* Technology (KAUST). All rights reserved.
33
*
44
* STARS-H is a software package, provided by King Abdullah
55
* University of Science and Technology (KAUST)
66
*
77
* @file examples/approximation/minimal.c
8-
* @version 0.3.0
8+
* @version 0.3.1
99
* @author Aleksandr Mikhalev
1010
* @date 2017-11-07
1111
* */

examples/approximation/randtlr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! @copyright (c) 2017 King Abdullah University of Science and
1+
/*! @copyright (c) 2017-2022 King Abdullah University of Science and
22
* Technology (KAUST). All rights reserved.
33
*
44
* STARS-H is a software package, provided by King Abdullah
55
* University of Science and Technology (KAUST)
66
*
77
* @file examples/approximation/randtlr.c
8-
* @version 0.3.0
8+
* @version 0.3.1
99
* @author Aleksandr Mikhalev
1010
* @date 2017-11-07
1111
* */

examples/approximation/spatial.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! @copyright (c) 2017 King Abdullah University of Science and
1+
/*! @copyright (c) 2017-2022 King Abdullah University of Science and
22
* Technology (KAUST). All rights reserved.
33
*
44
* STARS-H is a software package, provided by King Abdullah
55
* University of Science and Technology (KAUST)
66
*
77
* @file examples/approximation/spatial.c
8-
* @version 0.3.0
8+
* @version 0.3.1
99
* @author Aleksandr Mikhalev
1010
* @date 2017-11-07
1111
* */

examples/problem/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
set(examples_files
1414
"spatial.c"
1515
"spatial_bivariate.c"
16+
"spatial_non_gaussian.c"
1617
"randtlr.c"
1718
"minimal.c"
1819
"dense.c"

0 commit comments

Comments
 (0)