Questions tagged [trilinos]

The Trilinos Project is an effort to facilitate the design, development, integration and ongoing support of mathematical software libraries.

The Trilinos Project is an effort to facilitate the design, development, integration and ongoing support of mathematical software libraries. In particular, our goal is to develop parallel solver algorithms and libraries within an objectoriented software framework for the solution of large-scale, complex multi-physics engineering and scientific applications. Our emphasis is on developing robust, scalable algorithms in a software framework, using abstract interfaces for flexible interoperability of components while providing a full-featured set of concrete classes that implement all abstract interfaces.

http://trilinos.sandia.gov/TrilinosOverview.pdf

35 questions
5
votes
0 answers

Got Junk Error Message from assembler while Compiling Trilinos Source Code

I am compiling Trilinos from source code and got an error which complains junk parts. My kernel version 3.13.0 and my g++ version is 4.8.2. I am running on x86_64 machine. The error message looks like this: scalar_field.s:24649: Error: junk…
Sean
  • 2,649
  • 3
  • 21
  • 27
4
votes
2 answers

Trilinos - c++: error trying to exec 'cc1plus': execvp: No such file or directory

I want to write a simple program which uses Trilinos. After many problems with configuration script I've managed to write it, so it launches without any problem. The problem is, when I try to compile my own code ( both Makefile and my test program…
Eenoku
  • 2,741
  • 4
  • 32
  • 64
2
votes
1 answer

Unresolved Problem including Dakota.v.6.10: Undefined reference in Teuchos_as.hpp even though header files exist

Within the past days I have tried to install Dakota v. 6.10 on my Ubuntu 16.04 system. According to the dakota.6.10 user manual inclusion of the library into my code works as the following: \# include "LibraryEnvironment.hpp" 'front end' \# include…
2
votes
1 answer

Converting Eigen::SparseMatrix to deal.ii ::SparseMatrix?

This is kind of an obscure question and I don't really expect anyone to answer, but I have this method that takes (and returns) an Eigen::SparseMatrix. I want to put it into the deal.ii library, is there a way to copy/convert a SparseMatrix from…
oh-nahh
  • 45
  • 4
2
votes
1 answer

OS X: CMake ignores CMAKE_C_COMPILER

I am trying to build Trilinos on my OS X 10.11.6 laptop and keep encountering the following problem: CMake uses Apple's Clang instead of GCC ... Probing the environment ... -- USE_XSDK_DEFAULTS='FALSE' -- CMAKE_BUILD_TYPE='RELEASE' --…
2
votes
1 answer

Trilinos - Make - arguments list too long

I need to compile my code which uses Trilinos. The problem is, every time I get this error: c++: error trying to exec '/usr/lib/gcc/x86_64-linux-gnu/4.9/cc1plus': execv: Argument list too long I don't know, how could I compile my code correctly -…
Eenoku
  • 2,741
  • 4
  • 32
  • 64
1
vote
2 answers

Trouble Building Trilinos (Scientific Computation Library) on Mac OS X

I am trying to build the Trilinos library on Mac OS X 10.6.8, basically following the instructions on this page and the CMake Quickstart document included with Trilinos. In order to build it with CMake, the instructions recommend setting up a…
clstaudt
  • 21,436
  • 45
  • 156
  • 239
1
vote
1 answer

LAPACK from Pytrilinos for least-squares

I'm trying to solve a large sparse 30,000x1,000 matrix using the a LAPACK solver in the Trilinos package. My goal is to minimise computation time however this Lapack solver only takes square matrices. So I'm manually converting my non-square matrix…
user_777
  • 41
  • 2
1
vote
1 answer

Location of base directory of OpenMPI for cmake

I am trying to compile Trilinos with MPI capabilities. But to specify the cmake command, i need to also specify the MPI base directory: cmake \ -DTPL_ENABLE_MPI=ON \ -DMPI_BASE_DIR:FILEPATH="" \ -DTrilinos_ENABLE_PyTrilinos:BOOL=ON…
Pavan Inguva
  • 65
  • 1
  • 7
1
vote
1 answer

Trilinos sparse block matrix anomalous memory consumption

I am building an application based on distributed linear algebra using Trilinos, the main issue is that memory consumption is much higher than expected. I have built a simple test case for building an Epetra::VbrMatrix with 1.5 million doubles…
Andrea Zonca
  • 8,378
  • 9
  • 42
  • 70
1
vote
1 answer

Large ID error in Trilinos MPI environment

I am new to Trilinos. I write a program which reads data from a file and construct a sparse matrix with the data. The global id can be very high exceed 32bit integer range. When I change the id to smaller values. Everything works. If I run with one…
worldterminator
  • 2,968
  • 6
  • 33
  • 52
1
vote
1 answer

Configure Error when Building Dakota

I am trying to build Sandia Lab's Dakota toolkit under Kubuntu 14.04 using the following cmake script: cmake \ -D CMAKE_INSTALL_PREFIX:PATH=/usr/local/dakota \ -D CMAKE_BUILD_TYPE:STRING=Release \ -D DAKOTA_HAVE_MPI:BOOL=TRUE \ -D…
Inniag
  • 23
  • 1
  • 6
1
vote
1 answer

build pytrilinos using trilinos version already installed

I have access to a cluster where trilinos is already statically built. Is it possible to build just pytrilinos myself linking to those libraries? or the only way is to built all of trilinos from source? thanks!
Andrea Zonca
  • 8,378
  • 9
  • 42
  • 70
1
vote
2 answers

How to compile my code and link with Trilinos libraries

I've just installed trilinos 11.0.3 and now I'm trying to compile my first application using cmake. The file I'm trying to compile is here http://code.google.com/p/trilinos/wiki/EpetraSimpleVector The first command cmake seems to work although I get…
giorgk
  • 109
  • 1
  • 11
0
votes
1 answer

cross-compiling application to work on older linux operating system

I need to cross-compile my application to run on a target machine using centos7. I am basing myself in the following cross-compilation repository https://github.com/tttapa/cross-python. This repository has a makefile to set up a toolchain with…
NCLibardi
  • 1
  • 1
1
2 3