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
ba45baf5
Commit
ba45baf5
authored
6 years ago
by
PRUVOST Florent
Browse files
Options
Downloads
Patches
Plain Diff
add an option to force looking for parallel kernels -> Intel MKL multithreaded
parent
a0696a6b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+9
-0
9 additions, 0 deletions
CMakeLists.txt
with
9 additions
and
0 deletions
CMakeLists.txt
+
9
−
0
View file @
ba45baf5
...
...
@@ -243,6 +243,10 @@ if(CHAMELEON_SCHED_STARPU)
endif
(
CHAMELEON_ENABLE_PRUNING_STATS
)
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
# TODO: use this option to avoid generate multiple precisions each time we launch cmake
#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
set
(
BLA_VENDOR
"Intel10_64lp_seq"
)
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 #
################################
...
...
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