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
Merge requests
!291
StarPU: make sure starpu is compiled with cuda support when CUDA is enabled
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
StarPU: make sure starpu is compiled with cuda support when CUDA is enabled
faverge/chameleon:hotfix/issue103
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Mathieu Faverge
requested to merge
faverge/chameleon:hotfix/issue103
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
Fix issue
#103 (closed)
Edited
3 years ago
by
Mathieu Faverge
0
0
Merge request reports
Compare
master
version 1
7a83c577
3 years ago
master (base)
and
latest version
latest version
f47b447d
1 commit,
3 years ago
version 1
7a83c577
1 commit,
3 years ago
1 file
+
8
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
runtime/starpu/CMakeLists.txt
+
8
−
0
Options
@@ -125,6 +125,14 @@ if ( STARPU_FOUND )
@@ -125,6 +125,14 @@ if ( STARPU_FOUND )
message
(
"--
${
Blue
}
Add definition HAVE_STARPU_MPI_COMM_GET_ATTR
${
ColourReset
}
"
)
message
(
"--
${
Blue
}
Add definition HAVE_STARPU_MPI_COMM_GET_ATTR
${
ColourReset
}
"
)
endif
()
endif
()
endif
()
endif
()
if
(
CHAMELEON_USE_CUDA AND NOT CHAMELEON_SIMULATION
)
check_function_exists
(
starpu_cublas_get_local_handle HAVE_STARPU_CUBLAS_GET_LOCAL_HANDLE
)
if
(
NOT HAVE_STARPU_CUBLAS_GET_LOCAL_HANDLE
)
message
(
FATAL_ERROR
"The detected StarPU library does not include cublas support. Please disable CHAMELEON_USE_CUDA or provide a StarPU library with cublas support."
)
endif
()
endif
()
morse_cmake_required_unset
()
morse_cmake_required_unset
()
endif
(
STARPU_FOUND
)
endif
(
STARPU_FOUND
)
Loading