Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
ba45baf5
Commit
ba45baf5
authored
Apr 16, 2018
by
PRUVOST Florent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add an option to force looking for parallel kernels -> Intel MKL multithreaded
parent
a0696a6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
CMakeLists.txt
CMakeLists.txt
+9
-0
No files found.
CMakeLists.txt
View file @
ba45baf5
...
@@ -243,6 +243,10 @@ if(CHAMELEON_SCHED_STARPU)
...
@@ -243,6 +243,10 @@ if(CHAMELEON_SCHED_STARPU)
endif
(
CHAMELEON_ENABLE_PRUNING_STATS
)
endif
(
CHAMELEON_ENABLE_PRUNING_STATS
)
endif
()
endif
()
# Option for parallel kernels
# ---------------------------
option
(
CHAMELEON_KERNELS_PAR
"Enable parallel kernels (requires Intel MKL)"
OFF
)
# Initially we need to generate files for different precisions
# Initially we need to generate files for different precisions
# TODO: use this option to avoid generate multiple precisions each time we launch cmake
# TODO: use this option to avoid generate multiple precisions each time we launch cmake
#option(CHAMELEON_GEN_PREC "Generate source files precisions" ON)
#option(CHAMELEON_GEN_PREC "Generate source files precisions" ON)
...
@@ -253,6 +257,11 @@ if (CMAKE_C_COMPILER_ID MATCHES "Intel" AND (NOT BLA_VENDOR OR BLA_VENDOR STREQU
...
@@ -253,6 +257,11 @@ if (CMAKE_C_COMPILER_ID MATCHES "Intel" AND (NOT BLA_VENDOR OR BLA_VENDOR STREQU
set
(
BLA_VENDOR
"Intel10_64lp_seq"
)
set
(
BLA_VENDOR
"Intel10_64lp_seq"
)
endif
()
endif
()
# If parallel kernels ON we need the parallel MKL version
if
(
CHAMELEON_KERNELS_PAR
)
set
(
BLA_VENDOR
"Intel10_64lp"
)
endif
()
###############################################################################
###############################################################################
# Build dependency HQR library #
# Build dependency HQR library #
################################
################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment