Skip to content

Commit

Permalink
Merge 'trilinos/Trilinos:develop' (5efb425) into 'tcad-charon/Trilino…
Browse files Browse the repository at this point in the history
…s:develop' (6c6e315).

* trilinos-develop:
  zoltan2:  removing unused file
  Tpetra: fix scalar error in test
  ATDM/cee-rhel6: Remove problematic lib path (ATDV-272)
  ATDM/cee-rhel6: Update LD_LIBRARY_PATH for git update (ATDV-272)
  • Loading branch information
Jenkins Pipeline committed Jul 9, 2020
2 parents 6c6e315 + 5efb425 commit 7cb81d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 316 deletions.
2 changes: 2 additions & 0 deletions cmake/std/atdm/cee-rhel6/environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ fi
# to be safe. Also, we need to set OMP_* env vars here because the SPARC
# modules change them!

atdm_remove_substrings_from_env_var LD_LIBRARY_PATH ":" "/usr/local/epd/canopy2/opt/Canopy/edm/envs/User/lib"

# Use updated Ninja and CMake
module load sems-env
module load sems-cmake/3.12.2
Expand Down
8 changes: 4 additions & 4 deletions packages/tpetra/core/test/CrsMatrix/CrsMatrix_UnitTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,9 +391,9 @@ namespace { // (anonymous)
size_t vecOffset = vec * numLocalRows;
for(size_t i = 0; i < numLocalRows - 1; i++)
{
TEST_EQUALITY(5.0 * ST::one(), vvals[vecOffset + i]);
TEST_EQUALITY(static_cast<Mag>(5.0) * ST::one(), vvals[vecOffset + i]);
}
TEST_EQUALITY(Scalar((double) numLocalColumns * ST::one()), Scalar(vvals[vecOffset + numLocalRows - 1]));
TEST_EQUALITY(static_cast<Mag>(numLocalColumns) * ST::one(), vvals[vecOffset + numLocalRows - 1]);
}
if(numVecs != 1)
{
Expand All @@ -405,9 +405,9 @@ namespace { // (anonymous)
vcol->get1dCopy(vvals(), numLocalRows);
for(size_t i = 0; i < numLocalRows - 1; i++)
{
TEST_EQUALITY(5.0 * ST::one(), vvals[i]);
TEST_EQUALITY(static_cast<Mag>(5.0) * ST::one(), vvals[i]);
}
TEST_EQUALITY(Scalar((double) numLocalColumns * ST::one()), Scalar(vvals[numLocalRows - 1]));
TEST_EQUALITY(static_cast<Mag>(numLocalColumns) * ST::one(), vvals[numLocalRows - 1]);
//Finally, test residual.
V res(rowMap);
//Here, have A*wcol = vcol. This means the residual of A, wcol, and vcol should be 0.
Expand Down
312 changes: 0 additions & 312 deletions packages/zoltan2/test/core/driver/tpetra-crs-hello.cpp

This file was deleted.

0 comments on commit 7cb81d9

Please sign in to comment.