Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
I
idg
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ResearchAndDevelopment
idg
Commits
7b962e06
Commit
7b962e06
authored
Jan 05, 2021
by
Bram Veenboer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
First steps towards MPI example
parent
fac03fd8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
idg-bin/examples/cxx/CMakeLists.txt
idg-bin/examples/cxx/CMakeLists.txt
+1
-0
idg-lib/CMakeLists.txt
idg-lib/CMakeLists.txt
+7
-1
No files found.
idg-bin/examples/cxx/CMakeLists.txt
View file @
7b962e06
...
@@ -22,3 +22,4 @@ if (BUILD_LIB_OPENCL)
...
@@ -22,3 +22,4 @@ if (BUILD_LIB_OPENCL)
add_subdirectory
(
OpenCL
)
add_subdirectory
(
OpenCL
)
endif
()
endif
()
add_subdirectory
(
plan
)
add_subdirectory
(
plan
)
add_subdirectory
(
distributed
)
\ No newline at end of file
idg-lib/CMakeLists.txt
View file @
7b962e06
...
@@ -19,7 +19,8 @@ option (BUILD_LIB_CPU "Build CPU libraries" ON)
...
@@ -19,7 +19,8 @@ option (BUILD_LIB_CPU "Build CPU libraries" ON)
option
(
BUILD_LIB_CUDA
"Build CUDA libraries"
OFF
)
option
(
BUILD_LIB_CUDA
"Build CUDA libraries"
OFF
)
#option (BUILD_LIB_OPENCL "Build OpenCL libraries" OFF)
#option (BUILD_LIB_OPENCL "Build OpenCL libraries" OFF)
option
(
BUILD_WITH_MKL
"Build with MKL (if available)"
OFF
)
option
(
BUILD_WITH_MKL
"Build with MKL (if available)"
OFF
)
option
(
BUILD_WITH_POWERSENSOR
" Build with PowerSensor"
OFF
)
option
(
BUILD_WITH_POWERSENSOR
"Build with PowerSensor"
OFF
)
option
(
BUILD_WITH_MPI
"Build with MPI"
OFF
)
option
(
PERFORMANCE_REPORT
"Report performance metrics"
OFF
)
option
(
PERFORMANCE_REPORT
"Report performance metrics"
OFF
)
option
(
COMPILE_VERBOSE
"Report compiler flags used during runtime compilation"
OFF
)
option
(
COMPILE_VERBOSE
"Report compiler flags used during runtime compilation"
OFF
)
option
(
STRICT_WARNINGS
"Turn compiliation warnings into errors"
ON
)
option
(
STRICT_WARNINGS
"Turn compiliation warnings into errors"
ON
)
...
@@ -124,6 +125,11 @@ if (BUILD_LIB_CUDA)
...
@@ -124,6 +125,11 @@ if (BUILD_LIB_CUDA)
find_package
(
CUDA QUIET
)
find_package
(
CUDA QUIET
)
endif
()
endif
()
# MPI
if
(
BUILD_WITH_MPI
)
find_package
(
MPI QUIET
)
endif
()
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/src
)
include_directories
(
${
CMAKE_CURRENT_BINARY_DIR
}
/src
)
# add main include folder
# add main include folder
...
...
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