[Trilinos-Users] Amesos-SuperLU output

Evans, Thomas M. (9te) evanstm at ornl.gov
Mon Mar 31 12:18:34 MDT 2008


Does anyone know how to turn off the following messages in Amesos hooked to
SuperLU-dist:


    // set the vectors and matrix in the linear problem
    d_problem->SetOperator(&(*d_matrix));
    d_problem->SetLHS(&(*d_z));
    d_problem->SetRHS(&(*d_y));

    // make the solver
    Amesos factory;
    d_solver = factory.Create(d_solver_string, *d_problem);
    
    // factorize the solver
    int s_err = d_solver->SymbolicFactorization();
    int n_err = d_solver->NumericFactorization();

yields on execution:

        SYMBfact time: 0.00
        DISTRIBUTE time        0.00

on output.  I tried inserting the following:

  Teuchos::ParameterList List;
  List.set("PrintTiming", false);
  List.set("PrintStatus", false);
  List.set("OutputLevel", 0);
  d_solver->SetParameters(List);

to no avail.  Any ideas?

Tom
-- 
Tom Evans
Radiation Transport and Shielding
Nuclear Science and Technology Division
------------------------------------------------
(865) 576-3535     Oak Ridge National Laboratory
(865) 574-9619 fax PO Box 2008 MS6172
evanstm at ornl.gov   Oak Ridge, TN 37831-6170
www.ornl.gov/sci/radiation_transport_criticality
------------------------------------------------




More information about the Trilinos-Users mailing list