Lines Matching refs:size
38 __global__ static void setValueK(CeedScalar *__restrict__ vec, CeedSize size, CeedScalar val) { in setValueK() argument
41 if (index < size) vec[index] = val; in setValueK()
84 __global__ static void rcpValueK(CeedScalar *__restrict__ vec, CeedSize size) { in rcpValueK() argument
87 if (index < size) { in rcpValueK()
108 __global__ static void scaleValueK(CeedScalar *__restrict__ x, CeedScalar alpha, CeedSize size) { in scaleValueK() argument
111 if (index < size) x[index] *= alpha; in scaleValueK()
130 …pyValueK(CeedScalar *__restrict__ y, CeedScalar alpha, CeedScalar *__restrict__ x, CeedSize size) { in axpyValueK() argument
133 if (index < size) y[index] += alpha * x[index]; in axpyValueK()
152 …ar *__restrict__ y, CeedScalar alpha, CeedScalar beta, CeedScalar *__restrict__ x, CeedSize size) { in axpbyValueK() argument
155 if (index < size) { in axpbyValueK()
177 …eMultValueK(CeedScalar *__restrict__ w, CeedScalar *x, CeedScalar *__restrict__ y, CeedSize size) { in pointwiseMultValueK() argument
180 if (index < size) w[index] = x[index] * y[index]; in pointwiseMultValueK()