Searched refs:tola (Results 1 – 4 of 4) sorted by relevance
| /petsc/src/vec/vec/impls/seq/kokkos/ |
| H A D | veckok.kokkos.cxx | 1107 PetscReal err, tol, tola, tolr, l_atol, l_rtol; in VecErrorWeightedNorms_SeqKokkos() 1112 tola = l_atol; in VecErrorWeightedNorms_SeqKokkos() 1114 tol = tola + tolr; in VecErrorWeightedNorms_SeqKokkos() 1115 if (tola > 0.) { in VecErrorWeightedNorms_SeqKokkos() 1116 l_nrma = PetscMax(l_nrma, err / tola); in VecErrorWeightedNorms_SeqKokkos() 1134 PetscReal err, tol, tola, tolr, l_atol, l_rtol; in VecErrorWeightedNorms_SeqKokkos() 1139 tola = l_atol; in VecErrorWeightedNorms_SeqKokkos() 1141 tol = tola + tolr; in VecErrorWeightedNorms_SeqKokkos() 1142 if (tola > 0.) { in VecErrorWeightedNorms_SeqKokkos() 1143 l_nrma += PetscSqr(err / tola); in VecErrorWeightedNorms_SeqKokkos()
|
| /petsc/src/vec/vec/interface/ |
| H A D | vector.c | 2365 PetscReal err, tol, tola, tolr; in VecErrorWeightedNorms_Basic() local 2371 tola = atol; in VecErrorWeightedNorms_Basic() 2373 tol = tola + tolr; in VecErrorWeightedNorms_Basic() 2374 if (tola > 0.) { in VecErrorWeightedNorms_Basic() 2375 if (wnormtype == NORM_INFINITY) nrma = PetscMax(nrma, err / tola); in VecErrorWeightedNorms_Basic() 2376 else nrma += PetscSqr(err / tola); in VecErrorWeightedNorms_Basic()
|
| /petsc/src/vec/vec/impls/seq/cupm/ |
| H A D | vecseqcupm_impl.hpp | 1726 const auto tola = skip ? 0.0 : PetscRealPart(thrust::get<2>(x)); in operator ()() local 1728 const auto tol = tola + tolr; in operator ()() 1730 const auto tup_a = this->compute_norm_(err, tola); in operator ()() 1751 const auto tola = skip ? 0.0 : PetscRealPart(thrust::get<3>(x)); in operator ()() local 1753 const auto tol = tola + tolr; in operator ()() 1755 const auto tup_a = this->compute_norm_(err, tola); in operator ()()
|
| /petsc/src/tao/pde_constrained/tutorials/ |
| H A D | elliptic.c | 66 PetscReal tola, tolb, tolc, told; member
|