Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix spelling errors in tpetra #1956

Closed
wants to merge 1 commit into from
Closed
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 packages/tpetra/core/ext/TpetraExt_MatrixMatrix_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2011,7 +2011,7 @@ void mult_A_B(
GlobalOrdinal global_row = Aview.rowMap->getGlobalElement(i);

// Loop across the i-th row of A and for each corresponding row in B, loop
// across colums and accumulate product A(i,k)*B(k,j) into our partial sum
// across columns and accumulate product A(i,k)*B(k,j) into our partial sum
// quantities C_row_i. In other words, as we stride across B(k,:) we're
// calculating updates for row i of the result matrix C.
C_row_i_length = OrdinalTraits<size_t>::zero();
Expand Down
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_Import_Util2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ lowCommunicationMakeColMapAndReindex (const Teuchos::ArrayView<const size_t> &ro

// Sort External column indices so that all columns coming from a
// given remote processor are contiguous. This is a sort with two
// auxillary arrays: RemoteColIndices and RemotePermuteIDs.
// auxiliary arrays: RemoteColIndices and RemotePermuteIDs.
Tpetra::sort3 (PIDList.begin (), PIDList.end (),
ColIndices.begin () + NumLocalColGIDs,
RemotePermuteIDs.begin ());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ TEUCHOS_UNIT_TEST( Distributor, createfromsendsandrecvs)

if(newdist.howInitialized()!=Tpetra::Details::DISTRIBUTOR_INITIALIZED_BY_CREATE_FROM_SENDS_N_RECVS)
{
myOut << "ProcID "<<my_proc <<"howInitialized() from distributor initalized with createFromSendsAndRecvs is incorrect" << endl;
myOut << "ProcID "<<my_proc <<"howInitialized() from distributor initialized with createFromSendsAndRecvs is incorrect" << endl;
success = false;
}

Expand Down