}
// else see if we are dealing
// with a parallel vector
- else if (dynamic_cast<const PETScWrappers::MPI::Vector *>(&vector) != nullptr)
+ else if (dynamic_cast<const PETScWrappers::VectorBase *>(&vector) != nullptr)
{
// there is the possibility
// that the vector has
-// Test the constructor PETScWrappers::MPI::Vector(const Vec &) that takes an
+// Test the constructor PETScWrappers::VectorBase(const Vec &) that takes an
// existing PETSc vector.
#include "../tests.h"
#include <vector>
-void test (PETScWrappers::MPI::Vector &v,
+void test (PETScWrappers::VectorBase &v,
PETScWrappers::MPI::Vector &w)
{
// set the first vector
// check that they're equal
Assert (v==w, ExcInternalError());
- v.compress(VectorOperation::insert);
- w.compress(VectorOperation::insert);
- v=w;
-
deallog << "OK" << std::endl;
}
-
int main (int argc, char **argv)
{
- std::ofstream logfile("output");
- deallog.attach(logfile);
- deallog.threshold_double(1.e-10);
+ initlog();
try
{
int ierr = VecCreateSeq (PETSC_COMM_SELF, 100, &vpetsc);
AssertThrow (ierr == 0, ExcPETScError(ierr));
{
- IndexSet indices(100);
- indices.add_range(0, 100);
- PETScWrappers::MPI::Vector v (indices, MPI_COMM_WORLD);
- PETScWrappers::MPI::Vector w (indices, MPI_COMM_WORLD);
+ PETScWrappers::VectorBase v (vpetsc);
+ PETScWrappers::MPI::Vector w (PETSC_COMM_SELF, 100, 100);
test (v,w);
}
#endif
AssertThrow (ierr == 0, ExcPETScError(ierr));
-
-
}
catch (std::exception &exc)
{
DEAL::Check vector access
DEAL::OK
DEAL::vector:
-(0.000e+00,5.000e+00) (1.000e+00,4.000e+00) (2.000e+00,3.000e+00) (3.000e+00,2.000e+00) (4.000e+00,1.000e+00)
+[Proc0 0-4] (0.000e+00,5.000e+00) (1.000e+00,4.000e+00) (2.000e+00,3.000e+00) (3.000e+00,2.000e+00) (4.000e+00,1.000e+00)
DEAL::OK
DEAL::Complex vectors:
-DEAL::v: (0.,0.) (1.,1.) (2.,4.) (3.,9.) (4.,16.) (5.,25.) (6.,36.) (7.,49.) (8.,64.) (9.,81.) (10.,100.) (11.,121.) (12.,144.) (13.,169.) (14.,196.) (15.,225.) (16.,256.) (17.,289.) (18.,324.) (19.,361.)
-w: (0.,0.) (1.,1.) (2.,4.) (3.,9.) (4.,16.) (5.,25.) (6.,36.) (7.,49.) (8.,64.) (9.,81.) (10.,100.) (11.,121.) (12.,144.) (13.,169.) (14.,196.) (15.,225.) (16.,256.) (17.,289.) (18.,324.) (19.,361.)
+DEAL::v: [Proc0 0-19] (0.,0.) (1.,1.) (2.,4.) (3.,9.) (4.,16.) (5.,25.) (6.,36.) (7.,49.) (8.,64.) (9.,81.) (10.,100.) (11.,121.) (12.,144.) (13.,169.) (14.,196.) (15.,225.) (16.,256.) (17.,289.) (18.,324.) (19.,361.)
+w: [Proc0 0-19] (0.,0.) (1.,1.) (2.,4.) (3.,9.) (4.,16.) (5.,25.) (6.,36.) (7.,49.) (8.,64.) (9.,81.) (10.,100.) (11.,121.) (12.,144.) (13.,169.) (14.,196.) (15.,225.) (16.,256.) (17.,289.) (18.,324.) (19.,361.)
OK
DEAL::OK
DEAL::Complex vectors:
-(0.,0.) (1.,1.) (2.,2.) (3.,3.) (4.,4.) (5.,5.) (6.,6.) (7.,7.) (8.,8.) (9.,9.) (10.,10.) (11.,11.) (12.,12.) (13.,13.) (14.,14.) (15.,15.) (16.,16.) (17.,17.) (18.,18.) (19.,19.)
-(1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
+[Proc0 0-19] (0.,0.) (1.,1.) (2.,2.) (3.,3.) (4.,4.) (5.,5.) (6.,6.) (7.,7.) (8.,8.) (9.,9.) (10.,10.) (11.,11.) (12.,12.) (13.,13.) (14.,14.) (15.,15.) (16.,16.) (17.,17.) (18.,18.) (19.,19.)
+[Proc0 0-19] (1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
DEAL::OK
if (k%3 == 0)
w(k) = std::complex<double> (k+1.,k+1);
}
+ v.compress(VectorOperation::insert);
+ w.compress(VectorOperation::insert);
// then copy elements and make sure the vectors are actually equal
v = w;
DEAL::OK
DEAL::Complex vectors:
-(1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
-(1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
+[Proc0 0-19] (1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
+[Proc0 0-19] (1.,1.) (0.,0.) (0.,0.) (4.,4.) (0.,0.) (0.,0.) (7.,7.) (0.,0.) (0.,0.) (10.,10.) (0.,0.) (0.,0.) (13.,13.) (0.,0.) (0.,0.) (16.,16.) (0.,0.) (0.,0.) (19.,19.) (0.,0.)
DEAL::OK
DEAL::unreadable=true,across=false
+[Proc 0 0-4]
(0.0000000000e+00,0.0000000000e+00)
(1.2345678901e+00,2.4691357802e+00)
(2.4691357802e+00,4.9382715605e+00)
(4.9382715605e+00,9.8765431210e+00)
DEAL::unreadable=false,across=true
-(0.000,0.000) (1.235,2.469) (2.469,4.938) (3.704,7.407) (4.938,9.877)
+[Proc0 0-4] (0.000,0.000) (1.235,2.469) (2.469,4.938) (3.704,7.407) (4.938,9.877)
-// See comments in tests/petsc/vector_wrap_01.cc
+// Test the constructor PETScWrappers::VectorBase(const Vec &) that takes an
+// existing PETSc vector for complex values.
#include "../tests.h"
#include <deal.II/lac/petsc_parallel_vector.h>
#include <vector>
-void test (PETScWrappers::MPI::Vector &v,
+void test (PETScWrappers::VectorBase &v,
PETScWrappers::MPI::Vector &w)
{
// set the first vector
// check that they're equal
AssertThrow (v==w, ExcInternalError());
- v=w;
-
- // check that they're still equal
- AssertThrow (v==w, ExcInternalError());
-
deallog << "OK" << std::endl;
}
int main (int argc, char **argv)
{
- std::ofstream logfile("output");
- deallog.attach(logfile);
- deallog.depth_console(0);
- deallog.threshold_double(1.e-10);
+ initlog();
try
{
int ierr = VecCreateSeq (PETSC_COMM_SELF, 100, &vpetsc);
AssertThrow (ierr == 0, ExcPETScError(ierr));
{
- PETScWrappers::MPI::Vector v (vpetsc);
+ PETScWrappers::VectorBase v (vpetsc);
PETScWrappers::MPI::Vector w (PETSC_COMM_SELF, 100, 100);
test (v,w);
}