Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_vcluster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_vcluster
Commits
a7998c79
Commit
a7998c79
authored
4 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing COMPONENT for VCluster
parent
4cb4256e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2812
passed
4 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+2
-0
2 additions, 0 deletions
CMakeLists.txt
src/CMakeLists.txt
+7
-4
7 additions, 4 deletions
src/CMakeLists.txt
with
9 additions
and
4 deletions
CMakeLists.txt
+
2
−
0
View file @
a7998c79
...
...
@@ -15,6 +15,8 @@ set(PETSC_ROOT CACHE PATH "If compiling with linear algebra indicate the PETSC r
set
(
ALPAKA_ROOT CACHE PATH
"Alpaka root path"
)
set
(
CUDA_ON_CPU CACHE BOOL
"Make Cuda work on heap"
)
execute_process
(
COMMAND bash -c
"cp
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/VCluster/VCluster.cpp
${
CMAKE_CURRENT_SOURCE_DIR
}
/src/VCluster/VCluster_cuda_on_cpu.cpp"
)
if
(
ENABLE_GPU
)
set
(
CUDA_ON_CPU OFF
)
enable_language
(
CUDA
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
7
−
4
View file @
a7998c79
...
...
@@ -139,22 +139,25 @@ if (CUDA_FOUND AND NOT CUDA_ON_CPU)
set
(
ADDITIONAL_OPENFPM_LIBS vcluster_cuda_on_cpu vcluster_dl_cuda_on_cpu
)
endif
()
install
(
TARGETS vcluster vcluster_dl
${
ADDITIONAL_OPENFPM_LIBS
}
DESTINATION openfpm_vcluster/lib
)
install
(
TARGETS vcluster vcluster_dl
${
ADDITIONAL_OPENFPM_LIBS
}
DESTINATION openfpm_vcluster/lib
COMPONENT OpenFPM
)
install
(
FILES MPI_wrapper/MPI_IallreduceW.hpp
MPI_wrapper/MPI_IrecvW.hpp
MPI_wrapper/MPI_IBcastW.hpp
MPI_wrapper/MPI_IsendW.hpp
MPI_wrapper/MPI_util.hpp
MPI_wrapper/MPI_IAllGather.hpp
DESTINATION openfpm_vcluster/include/MPI_wrapper
)
DESTINATION openfpm_vcluster/include/MPI_wrapper
COMPONENT OpenFPM
)
install
(
FILES VCluster/VCluster_base.hpp
VCluster/VCluster.hpp
VCluster/VCluster_meta_function.hpp
DESTINATION openfpm_vcluster/include/VCluster
)
DESTINATION openfpm_vcluster/include/VCluster
COMPONENT OpenFPM
)
install
(
FILES util/Vcluster_log.hpp
DESTINATION openfpm_vcluster/include/util
)
DESTINATION openfpm_vcluster/include/util
COMPONENT OpenFPM
)
#if(BUILD_TESTING)
...
...
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