Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
8ff06cd7
Commit
8ff06cd7
authored
10 years ago
by
PRUVOST Florent
Browse files
Options
Downloads
Patches
Plain Diff
correct install process for runtime/ part
parent
55790cc3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
runtime/quark/CMakeLists.txt
+9
-4
9 additions, 4 deletions
runtime/quark/CMakeLists.txt
runtime/quark/include/CMakeLists.txt
+0
-63
0 additions, 63 deletions
runtime/quark/include/CMakeLists.txt
runtime/starpu/CMakeLists.txt
+14
-6
14 additions, 6 deletions
runtime/starpu/CMakeLists.txt
with
23 additions
and
73 deletions
runtime/quark/CMakeLists.txt
+
9
−
4
View file @
8ff06cd7
...
...
@@ -53,6 +53,11 @@ set(RUNTIME_HDRS
# ---------------------------
add_custom_target
(
runtime_quark_include ALL SOURCES
${
RUNTIME_HDRS
}
)
# installation
# ------------
#install(FILES ${RUNTIME_HDRS}
# DESTINATION include)
# Generate the morse common for all possible precisions
# -----------------------------------------------------
set
(
RUNTIME_COMMON_GENERATED
""
)
...
...
@@ -109,12 +114,12 @@ set(ZSRC
codelets/codelet_zgetrf.c
codelets/codelet_zgetrf_incpiv.c
codelets/codelet_zgetrf_nopiv.c
codelets/codelet_zhessq.c
codelets/codelet_zhessq.c
codelets/codelet_zlacpy.c
codelets/codelet_zlange.c
codelets/codelet_zlanhe.c
codelets/codelet_zlansy.c
codelets/codelet_zlantr.c
codelets/codelet_zlansy.c
codelets/codelet_zlantr.c
codelets/codelet_zlaset2.c
codelets/codelet_zlaset.c
codelets/codelet_zlauum.c
...
...
@@ -125,7 +130,7 @@ set(ZSRC
codelets/codelet_zpotrf.c
codelets/codelet_zssssm.c
codelets/codelet_zsyssq.c
codelets/codelet_zsytrf_nopiv.c
codelets/codelet_zsytrf_nopiv.c
codelets/codelet_ztrasm.c
codelets/codelet_ztrssq.c
codelets/codelet_ztrtri.c
...
...
This diff is collapsed.
Click to expand it.
runtime/quark/include/CMakeLists.txt
deleted
100644 → 0
+
0
−
63
View file @
55790cc3
###
#
# @copyright (c) 2009-2014 The University of Tennessee and The University
# of Tennessee Research Foundation.
# All rights reserved.
# @copyright (c) 2012-2014 Inria. All rights reserved.
# @copyright (c) 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
#
###
#
# @file CMakeLists.txt
#
# @project MORSE
# MORSE is a software package provided by:
# Inria Bordeaux - Sud-Ouest,
# Univ. of Tennessee,
# King Abdullah Univesity of Science and Technology
# Univ. of California Berkeley,
# Univ. of Colorado Denver.
#
# @version 0.9.0
# @author Cedric Castagnede
# @author Emmanuel Agullo
# @author Mathieu Faverge
# @date 13-07-2012
#
###
cmake_minimum_required
(
VERSION 2.8
)
# Generate the morse headers for all possible precisions
# ------------------------------------------------------
set
(
QUARKBLAS_HEADERS_GENERATED
""
)
set
(
ZHDR
quark_zblas.h
quark_zcblas.h
)
precisions_rules_py
(
QUARKBLAS_HEADERS_GENERATED
"
${
ZHDR
}
"
PRECISIONS
"
${
CHAMELEON_PRECISION
}
"
DICTIONARY
"MORSE"
)
# Define the list of headers
# --------------------------
set
(
QUARKBLAS_HEADERS
core_blas_dag.h
morse_quark.h
quark_blas.h
${
QUARKBLAS_HEADERS_GENERATED
}
)
# Force generation of headers
# ---------------------------
add_custom_target
(
quarkblas_include ALL SOURCES
${
QUARKBLAS_HEADERS
}
)
# installation
# ------------
install
(
FILES
${
MORSE_HEADERS
}
DESTINATION include
)
###
### END CMakeLists.txt
###
This diff is collapsed.
Click to expand it.
runtime/starpu/CMakeLists.txt
+
14
−
6
View file @
8ff06cd7
...
...
@@ -53,8 +53,11 @@ precisions_rules_py(RUNTIME_HDRS_GENERATED "${ZHDR}"
# Define the list of headers
# --------------------------
set
(
RUNTIME_HDRS
include/
morse_starpu
.h
include/
codelet_profile
.h
include/codelets.h
include/morse_starpu.h
include/profiling.h
include/workspace.h
${
RUNTIME_HDRS_GENERATED
}
)
...
...
@@ -62,6 +65,11 @@ set(RUNTIME_HDRS
# ---------------------------
add_custom_target
(
runtime_starpu_include ALL SOURCES
${
RUNTIME_HDRS
}
)
# installation
# ------------
#install(FILES ${RUNTIME_HDRS}
# DESTINATION include)
# Generate the morse common for all possible precisions
# -----------------------------------------------------
set
(
RUNTIME_COMMON_GENERATED
""
)
...
...
@@ -85,7 +93,7 @@ set(RUNTIME_COMMON
codelets/codelet_dataflush.c
${
RUNTIME_COMMON_GENERATED
}
)
foreach
(
_prec
${
CHAMELEON_PRECISION
}
)
set_source_files_properties
(
control/profiling.c PROPERTIES COMPILE_FLAGS
"-DPRECISION_
${
_prec
}
"
)
endforeach
()
...
...
@@ -128,8 +136,8 @@ set(ZSRC
codelets/codelet_zlacpy.c
codelets/codelet_zlange.c
codelets/codelet_zlanhe.c
codelets/codelet_zlansy.c
codelets/codelet_zlantr.c
codelets/codelet_zlansy.c
codelets/codelet_zlantr.c
codelets/codelet_zlaset2.c
codelets/codelet_zlaset.c
codelets/codelet_zlauum.c
...
...
@@ -140,7 +148,7 @@ set(ZSRC
codelets/codelet_zpotrf.c
codelets/codelet_zssssm.c
codelets/codelet_zsyssq.c
codelets/codelet_zsytrf_nopiv.c
codelets/codelet_zsytrf_nopiv.c
codelets/codelet_ztrasm.c
codelets/codelet_ztrssq.c
codelets/codelet_ztrtri.c
...
...
@@ -156,7 +164,7 @@ set(ZSRC
codelets/codelet_zunmlq.c
codelets/codelet_zunmqr.c
)
list
(
REMOVE_DUPLICATES ZSRC
)
list
(
REMOVE_DUPLICATES ZSRC
)
precisions_rules_py
(
RUNTIME_SRCS_GENERATED
"
${
ZSRC
}
"
PRECISIONS
"
${
CHAMELEON_PRECISION
}
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment