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
f1255432
Commit
f1255432
authored
4 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing CUDA
parent
32601c15
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2606
failed
4 years ago
Stage: build
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
src/CMakeLists.txt
+11
-4
11 additions, 4 deletions
src/CMakeLists.txt
src/VCluster/VCluster.cpp
+19
-1
19 additions, 1 deletion
src/VCluster/VCluster.cpp
src/VCluster/VCluster.hpp
+51
-1
51 additions, 1 deletion
src/VCluster/VCluster.hpp
with
82 additions
and
7 deletions
CMakeLists.txt
+
1
−
1
View file @
f1255432
...
...
@@ -35,7 +35,7 @@ if (ENABLE_GPU)
set
(
WARNING_SUPPRESSION_AND_OPTION_NVCC -Xcudafe
"--display_error_number --diag_suppress=2976 --diag_suppress=2977 --diag_suppress=2979 --diag_suppress=186"
--expt-extended-lambda
)
elseif
(
CUDA_VERSION_MAJOR EQUAL 11 AND CUDA_VERSION_MINOR EQUAL 0
)
message
(
"CUDA is compatible"
)
set
(
WARNING_SUPPRESSION_AND_OPTION_NVCC -Xcudafe
"--display_error_number --diag_suppress=3059 --diag_suppress=3058 --diag_suppress=3057 --diag_suppress=3056 --diag_suppress=611 --diag_suppress=186"
--expt-extended-lambda
)
set
(
WARNING_SUPPRESSION_AND_OPTION_NVCC -Xcudafe
"--display_error_number --diag_suppress=3059 --diag_suppress=3058 --diag_suppress=3057 --diag_suppress=3056 --diag_suppress=611 --diag_suppress=186
--diag_suppress=128
"
--expt-extended-lambda
)
elseif
(
CUDA_VERSION_MAJOR EQUAL 11 AND CUDA_VERSION_MINOR EQUAL 1
)
message
(
"CUDA is compatible 11.1"
)
set
(
WARNING_SUPPRESSION_AND_OPTION_NVCC -Xcudafe
"--display_error_number --diag_suppress=3124 --diag_suppress=3126 --diag_suppress=3125 --diag_suppress=3123 --diag_suppress=611 --diag_suppress=186 --diag_suppress=128"
--expt-extended-lambda
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
11
−
4
View file @
f1255432
...
...
@@ -24,21 +24,28 @@ if ( CMAKE_COMPILER_IS_GNUCC )
endif
()
endif
()
###########################
add_library
(
vcluster STATIC VCluster/VCluster.cpp
)
add_library
(
vcluster_dl SHARED VCluster/VCluster.cpp
)
add_dependencies
(
vcluster_test ofpmmemory
)
###########################
if
(
CUDA_FOUND
)
target_compile_options
(
vcluster_test PUBLIC $<$<COMPILE_LANGUAGE:CUDA>:
${
WARNING_SUPPRESSION_AND_OPTION_NVCC
}
>
)
target_compile_options
(
vcluster PUBLIC $<$<COMPILE_LANGUAGE:CUDA>:
${
WARNING_SUPPRESSION_AND_OPTION_NVCC
}
>
)
target_compile_options
(
vcluster_dl PUBLIC $<$<COMPILE_LANGUAGE:CUDA>:
${
WARNING_SUPPRESSION_AND_OPTION_NVCC
}
>
)
target_include_directories
(
vcluster_test PUBLIC
${
MPI_C_INCLUDE_DIRS
}
)
if
(
TEST_COVERAGE
)
target_compile_options
(
vcluster_test PRIVATE $<$<COMPILE_LANGUAGE:CUDA>: -Xcompiler
"-fprofile-arcs -ftest-coverage"
>
)
endif
()
if
(
NOT CUDA_ON_CPU
)
set_source_files_properties
(
VCluster/VCluster.cpp PROPERTIES LANGUAGE CUDA
)
endif
()
endif
()
add_dependencies
(
vcluster_test ofpmmemory
)
target_include_directories
(
vcluster_test PUBLIC
${
CUDA_INCLUDE_DIRS
}
)
target_include_directories
(
vcluster_test PUBLIC
${
CMAKE_CURRENT_SOURCE_DIR
}
)
target_include_directories
(
vcluster_test PUBLIC
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../openfpm_devices/src/
)
...
...
This diff is collapsed.
Click to expand it.
src/VCluster/VCluster.cpp
+
19
−
1
View file @
f1255432
...
...
@@ -58,7 +58,7 @@ double time_spent = 0.0;
* This function MUST be called before any other function
*
*/
void
openfpm_init
(
int
*
argc
,
char
***
argv
)
void
openfpm_init
_vcl
(
int
*
argc
,
char
***
argv
)
{
#ifdef HAVE_PETSC
...
...
@@ -118,6 +118,24 @@ void openfpm_init(int *argc, char ***argv)
#endif
}
size_t
openfpm_vcluster_compilation_mask
()
{
size_t
compiler_mask
=
0
;
#ifdef CUDA_ON_CPU
compiler_mask
|=
0x1
;
#endif
#ifdef __NVCC__
compiler_mask
|=
0x02
;
#endif
#ifdef CUDA_GPU
compiler_mask
|=
0x04
;
#endif
return
compiler_mask
;
}
/*! \brief Finalize the library
*
...
...
This diff is collapsed.
Click to expand it.
src/VCluster/VCluster.hpp
+
51
−
1
View file @
f1255432
...
...
@@ -13,6 +13,7 @@
#include
"VCluster_base.hpp"
#include
"VCluster_meta_function.hpp"
#include
"util/math_util_complex.hpp"
#include
"memory/mem_conf.hpp"
#ifdef CUDA_GPU
extern
CudaMemory
mem_tmp
;
...
...
@@ -1426,8 +1427,9 @@ static inline bool is_openfpm_init()
* This function MUST be called before any other function
*
*/
void
openfpm_init
(
int
*
argc
,
char
***
argv
);
void
openfpm_init
_vcl
(
int
*
argc
,
char
***
argv
);
size_t
openfpm_vcluster_compilation_mask
();
/*! \brief Finalize the library
*
...
...
@@ -1436,6 +1438,54 @@ void openfpm_init(int *argc, char ***argv);
*/
void
openfpm_finalize
();
static
std
::
string
get_link_lib
(
size_t
opt
)
{
std
::
string
op
;
if
(
opt
&
0x01
)
{
return
"_cuda_on_cpu"
;
}
if
(
opt
&
0x04
)
{
return
"_cuda"
;
}
return
""
;
}
/*! \brief Initialize the library
*
* This function MUST be called before any other function
*
*/
static
void
openfpm_init
(
int
*
argc
,
char
***
argv
)
{
openfpm_init_vcl
(
argc
,
argv
);
size_t
compiler_mask
=
0
;
#ifdef CUDA_ON_CPU
compiler_mask
|=
0x1
;
#endif
#ifdef __NVCC__
compiler_mask
|=
0x02
;
#endif
#ifdef CUDA_GPU
compiler_mask
|=
0x04
;
#endif
if
(
compiler_mask
!=
openfpm_vcluster_compilation_mask
()
||
compiler_mask
!=
openfpm_ofpmmemory_compilation_mask
())
{
std
::
cout
<<
__FILE__
<<
":"
<<
__LINE__
<<
" Error: with the compilation options you are using you should linking with "
<<
get_link_lib
(
compiler_mask
)
<<
" but you are linking with "
<<
"-lvcluster_"
<<
get_link_lib
(
openfpm_vcluster_compilation_mask
())
<<
" and -lofpmmemory_"
<<
get_link_lib
(
openfpm_ofpmmemory_compilation_mask
())
<<
std
::
endl
;
}
}
#endif
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