Lines Matching refs:qf
19 static int CeedQFunctionApply_Memcheck(CeedQFunction qf, CeedInt Q, CeedVector *U, CeedVector *V) { in CeedQFunctionApply_Memcheck() argument
27 CeedCallBackend(CeedQFunctionGetData(qf, &impl)); in CeedQFunctionApply_Memcheck()
28 CeedCallBackend(CeedQFunctionGetContextData(qf, CEED_MEM_HOST, &ctx_data)); in CeedQFunctionApply_Memcheck()
29 CeedCallBackend(CeedQFunctionGetUserFunction(qf, &f)); in CeedQFunctionApply_Memcheck()
30 CeedCallBackend(CeedQFunctionGetNumArgs(qf, &num_in, &num_out)); in CeedQFunctionApply_Memcheck()
72 CeedCallBackend(CeedQFunctionGetSourcePath(qf, &kernel_path)); in CeedQFunctionApply_Memcheck()
73 CeedCallBackend(CeedQFunctionGetKernelName(qf, &kernel_name)); in CeedQFunctionApply_Memcheck()
74 CeedCallBackend(CeedQFunctionGetFields(qf, NULL, NULL, NULL, &output_fields)); in CeedQFunctionApply_Memcheck()
83 CeedCheck(!isnan(impl->outputs[i][j]), CeedQFunctionReturnCeed(qf), CEED_ERROR_BACKEND, in CeedQFunctionApply_Memcheck()
91 CeedCallBackend(CeedQFunctionRestoreContextData(qf, &ctx_data)); in CeedQFunctionApply_Memcheck()
98 static int CeedQFunctionDestroy_Memcheck(CeedQFunction qf) { in CeedQFunctionDestroy_Memcheck() argument
101 CeedCallBackend(CeedQFunctionGetData(qf, &impl)); in CeedQFunctionDestroy_Memcheck()
111 int CeedQFunctionCreate_Memcheck(CeedQFunction qf) { in CeedQFunctionCreate_Memcheck() argument
115 CeedCallBackend(CeedQFunctionGetCeed(qf, &ceed)); in CeedQFunctionCreate_Memcheck()
119 CeedCallBackend(CeedQFunctionSetData(qf, impl)); in CeedQFunctionCreate_Memcheck()
120 …CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Apply", CeedQFunctionApply_Memcheck… in CeedQFunctionCreate_Memcheck()
121 …CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Destroy", CeedQFunctionDestroy_Memc… in CeedQFunctionCreate_Memcheck()