Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tnl-dev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TNL
tnl-dev
Commits
0c32d518
There was an error fetching the commit references. Please try again later.
Commit
0c32d518
authored
3 years ago
by
Jakub Klinkovský
Browse files
Options
Downloads
Patches
Plain Diff
Documentation: fixed mpirun commands in CMakeLists.txt
parent
7b4b6242
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Documentation/Examples/Containers/CMakeLists.txt
+4
-4
4 additions, 4 deletions
Documentation/Examples/Containers/CMakeLists.txt
with
4 additions
and
4 deletions
Documentation/Examples/Containers/CMakeLists.txt
+
4
−
4
View file @
0c32d518
...
...
@@ -10,7 +10,7 @@ set( MPI_COMMON_EXAMPLES
DistributedArrayExample
)
SET
(
mpi
_test
_parameters -np 4 -H localhost:4
"
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY
}
/DistributedArrayTest
${
CMAKE_EXECUTABLE_SUFFIX
}
"
)
SET
(
mpi
run
_parameters -np 4 -H localhost:4
)
if
(
BUILD_CUDA
)
foreach
(
target IN ITEMS
${
COMMON_EXAMPLES
}
)
...
...
@@ -21,7 +21,7 @@ if( BUILD_CUDA )
if
(
${
BUILD_MPI
}
)
foreach
(
target IN ITEMS
${
MPI_COMMON_EXAMPLES
}
)
cuda_add_executable
(
${
target
}
-cuda
${
target
}
.cu OPTIONS
)
add_custom_command
(
COMMAND
"mpirun"
${
mpi
_test
_parameters
}
${
target
}
-cuda >
${
TNL_DOCUMENTATION_OUTPUT_SNIPPETS_PATH
}
/
${
target
}
.out OUTPUT
${
target
}
.out
)
add_custom_command
(
COMMAND
"mpirun"
${
mpi
run
_parameters
}
${
target
}
-cuda >
${
TNL_DOCUMENTATION_OUTPUT_SNIPPETS_PATH
}
/
${
target
}
.out OUTPUT
${
target
}
.out
)
set
(
CUDA_OUTPUTS
${
CUDA_OUTPUTS
}
${
target
}
.out
)
endforeach
()
endif
()
...
...
@@ -34,8 +34,8 @@ else()
if
(
${
BUILD_MPI
}
)
foreach
(
target IN ITEMS
${
MPI_COMMON_EXAMPLES
}
)
add_executable
(
${
target
}
${
target
}
.cpp
)
add_custom_command
(
COMMAND
"mpirun"
${
mpi
_test
_parameters
}
${
target
}
-cuda
>
${
TNL_DOCUMENTATION_OUTPUT_SNIPPETS_PATH
}
/
${
target
}
.out OUTPUT
${
target
}
.out
)
set
(
HOST_OUTPUTS
${
CUDA
_OUTPUTS
}
${
target
}
.out
)
add_custom_command
(
COMMAND
"mpirun"
${
mpi
run
_parameters
}
${
target
}
>
${
TNL_DOCUMENTATION_OUTPUT_SNIPPETS_PATH
}
/
${
target
}
.out OUTPUT
${
target
}
.out
)
set
(
HOST_OUTPUTS
${
HOST
_OUTPUTS
}
${
target
}
.out
)
endforeach
()
endif
()
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