Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Minimal Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Tobias Meisel
Minimal Examples
Merge requests
!1
Couldn't fetch the linked file.
HDF5 minimal example
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
HDF5 minimal example
without_odds
into
main
Overview
0
Commits
11
Pipelines
0
Changes
3
Merged
Tobias Meisel
requested to merge
without_odds
into
main
3 years ago
Overview
0
Commits
11
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Viewing commit
8c61a2f3
Prev
Next
Show latest version
3 files
+
208
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
8c61a2f3
refs
· 8c61a2f3
Tobias Meisel
authored
3 years ago
CMakeLists.txt
+
1
−
1
Options
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.0.0)
project
(
mpitest VERSION 0.1.0
)
find_package
(
MPI REQUIRED
)
find_package
(
HDF5 REQUIRED
)
add_executable
(
mpitest
hdf5
.cpp
)
add_executable
(
mpitest
ref
.cpp
)
target_link_libraries
(
mpitest
PRIVATE
MPI::MPI_CXX
Loading