Lines Matching refs:x

15   const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x;  in copyStridedK()
39 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in setValueK()
61 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in setValueStridedK()
85 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in rcpValueK()
108 __global__ static void scaleValueK(CeedScalar *__restrict__ x, CeedScalar alpha, CeedSize size) { in scaleValueK() argument
109 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in scaleValueK()
111 if (index < size) x[index] *= alpha; in scaleValueK()
130 …pyValueK(CeedScalar *__restrict__ y, CeedScalar alpha, CeedScalar *__restrict__ x, CeedSize size) { in axpyValueK() argument
131 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in axpyValueK()
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
153 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in axpbyValueK()
157 y[index] += alpha * x[index]; in axpbyValueK()
177 __global__ static void pointwiseMultValueK(CeedScalar *__restrict__ w, CeedScalar *x, CeedScalar *_… in pointwiseMultValueK() argument
178 const CeedSize index = threadIdx.x + (CeedSize)blockDim.x * blockIdx.x; in pointwiseMultValueK()
180 if (index < size) w[index] = x[index] * y[index]; in pointwiseMultValueK()