Lines Matching refs:PetscReal
10 public thrust::unary_function<thrust::tuple<PetscReal, size_t>, PetscReal>
13 PetscReal rl, rw;
14 PetscReal il, iw;
24 …__host__ __device__ PetscReal operator()(thrust::tuple<PetscReal, size_t> x) { return thrust::get<… in operator ()()
31 public thrust::unary_function<PetscReal, PetscReal>
34 PetscReal l, w;
36 realscalelw(PetscReal low, PetscReal width) : l(low), w(width) { } in realscalelw()
38 __host__ __device__ PetscReal operator()(PetscReal x) { return x * w + l; } in operator ()()
41 PETSC_INTERN PetscErrorCode PetscRandomCurandScale_Private(PetscRandom r, size_t n, PetscReal *val,… in PetscRandomCurandScale_Private()
47 thrust::device_ptr<PetscReal> pval = thrust::device_pointer_cast(val); in PetscRandomCurandScale_Private()
54 PetscReal rl = PetscRealPart(r->low); in PetscRandomCurandScale_Private()
55 PetscReal rw = PetscRealPart(r->width); in PetscRandomCurandScale_Private()
56 thrust::device_ptr<PetscReal> pval = thrust::device_pointer_cast(val); in PetscRandomCurandScale_Private()