Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/_typos.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[files]
extend-exclude = ["third_party/*", "*.svg"]
extend-exclude = ["third_party/*", "*.svg", "*.bib", "CITING.md"]

[default.extend-words]
dout = "dout"
Expand Down
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ build/cuda110/nompi/gcc/cuda/release/shared:
variables:
BUILD_OMP: "ON"
BUILD_CUDA: "ON"
BUILD_MPI: "OFF"
BUILD_TYPE: "Release"
FAST_TESTS: "ON"
# fix gtest issue https://github.com/google/googletest/issues/3514
Expand Down
10 changes: 2 additions & 8 deletions include/ginkgo/core/base/mpi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,9 +567,6 @@ class communicator {
*/
bool is_identical(const communicator& rhs) const
{
if (get() == nullptr || rhs.get() == nullptr) {
return get() == rhs.get();
}
if (get() == MPI_COMM_NULL || rhs.get() == MPI_COMM_NULL) {
return get() == rhs.get();
}
Expand All @@ -592,9 +589,6 @@ class communicator {
*/
bool is_congruent(const communicator& rhs) const
{
if (!get() || !rhs.get()) {
return get() == rhs.get();
}
if (get() == MPI_COMM_NULL || rhs.get() == MPI_COMM_NULL) {
return get() == rhs.get();
}
Expand Down Expand Up @@ -725,7 +719,7 @@ class communicator {
* Broadcast data from calling process to all ranks in the communicator
*
* @param exec The executor, on which the message buffer is located.
* @param buffer the buffer to broadcsat
* @param buffer the buffer to broadcast
* @param count the number of elements to broadcast
* @param root_rank the rank to broadcast from
*
Expand All @@ -748,7 +742,7 @@ class communicator {
* communicator
*
* @param exec The executor, on which the message buffer is located.
* @param buffer the buffer to broadcsat
* @param buffer the buffer to broadcast
* @param count the number of elements to broadcast
* @param root_rank the rank to broadcast from
*
Expand Down
Loading