[Trilinos-Users] PyTrilinos_testTpetra_Map_MPI_4 fails with the latest master

Ondřej Čertík ondrej.certik at gmail.com
Thu Apr 9 12:43:19 MDT 2015


Hi,

I used 8756dbccdb5e85ebf7764f168c10fdaf50f3550f and here are the tests results:

https://gist.github.com/certik/6d1e0949ab2250a84657

99% tests passed, 1 tests failed out of 110

Label Time Summary:
Epetra        =   9.46 sec
ML            =  24.51 sec
PyTrilinos    =  52.94 sec

Total Test time (real) =  87.36 sec

The following tests FAILED:
     93 - PyTrilinos_testTpetra_Map_MPI_4 (Failed)
Errors while running CTest

As you can see, all pass except one. A verbose output is available
there too. It looks like all the errors are caused by:

93: TypeError: in method 'Map_default_locallySameAs', argument 2 of
type 'Tpetra::Map< long,long,Tpetra::Map< long,long >::node_type >
const &'

I used gcc 4.9.2 and configured Trilinos with:

ARTIFACT=`pwd`/xx
MPICXX=mpic++
MPICC=mpicc

mkdir build
cd build

cmake \
    -D CMAKE_INSTALL_PREFIX:PATH="${ARTIFACT}" \
    -D CMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON \
    -D CMAKE_INSTALL_RPATH:STRING="${ARTIFACT}/lib" \
    -D CMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON \
    -D CMAKE_BUILD_TYPE:STRING=Release \
    -D CMAKE_PREFIX_PATH="${HASHSTACK}" \
    -D CMAKE_CXX_COMPILER:FILEPATH=${MPICXX} \
    -D CMAKE_C_COMPILER:FILEPATH=${MPICC} \
    -D Trilinos_INSTALL_INCLUDE_DIR:PATH=include/trilinos \
    -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
    -D Trilinos_ENABLE_Epetra:BOOL=ON \
    -D Trilinos_ENABLE_ML:BOOL=ON \
    -D Trilinos_ENABLE_PyTrilinos:BOOL=ON \
    -D Trilinos_ENABLE_TESTS:BOOL=ON \
    -D Trilinos_ENABLE_EXAMPLES:BOOL=OFF \
    -D BUILD_SHARED_LIBS:BOOL=ON \
    -D TPL_ENABLE_MPI:BOOL=ON \
    -D TPL_ENABLE_UMFPACK:BOOL=ON \
    -D BLAS_LIBRARY_NAMES:STRING=openblas \
    -D BLAS_LIBRARY_DIRS:PATH=${HASHSTACK}/lib \
    -D LAPACK_LIBRARY_NAMES:STRING=openblas \
    -D LAPACK_LIBRARY_DIRS:PATH=${HASHSTACK}/lib \
    -D UMFPACK_INCLUDE_DIRS:PATH=${HASHSTACK}/include/suitesparse \
    -D UMFPACK_LIBRARY_DIRS:PATH=${HASHSTACK}/lib \
    -D UMFPACK_LIBRARY_NAMES:STRING="umfpack;cholmod;camd;ccolamd;colamd;amd;suitesparseconfig"
\
    -D SWIG_EXECUTABLE:FILEPATH=`which swig` \
    -D Trilinos_ENABLE_DEVELOPMENT_MODE:BOOL=OFF \
    -D PYTHON_EXECUTABLE:FILEPATH=`which python` \
    -D Teuchos_ENABLE_DEBUG:BOOL=ON \
    ..

make

ctest


Is anybody able to reproduce this failure?

Ondrej


More information about the Trilinos-Users mailing list