Home
last modified time | relevance | path

Searched refs:rstr_out (Results 1 – 4 of 4) sorted by relevance

/libCEED/backends/hip-ref/
H A Dceed-hip-ref-operator.c1409 CeedElemRestriction assembled_rstr = NULL, rstr_in, rstr_out, diag_rstr; in CeedOperatorAssembleDiagonalCore_Hip() local
1438 CeedCallBackend(CeedOperatorGetActiveElemRestrictions(op, &rstr_in, &rstr_out)); in CeedOperatorAssembleDiagonalCore_Hip()
1439 CeedCheck(rstr_in == rstr_out, ceed, CEED_ERROR_BACKEND, in CeedOperatorAssembleDiagonalCore_Hip()
1442 CeedCallBackend(CeedElemRestrictionCreateUnsignedCopy(rstr_out, &diag->diag_rstr)); in CeedOperatorAssembleDiagonalCore_Hip()
1445 …CeedCallBackend(CeedOperatorCreateActivePointBlockRestriction(rstr_out, &diag->point_block_diag_rs… in CeedOperatorAssembleDiagonalCore_Hip()
1449 CeedCallBackend(CeedElemRestrictionDestroy(&rstr_out)); in CeedOperatorAssembleDiagonalCore_Hip()
1513 CeedElemRestriction rstr_in = NULL, rstr_out = NULL; in CeedOperatorAssembleSingleSetup_Hip() local
1579 if (!rstr_out) CeedCallBackend(CeedElemRestrictionReferenceCopy(elem_rstr, &rstr_out)); in CeedOperatorAssembleSingleSetup_Hip()
1581 CeedCallBackend(CeedElemRestrictionGetElementSize(rstr_out, &elem_size_out)); in CeedOperatorAssembleSingleSetup_Hip()
1619 CeedCallBackend(CeedElemRestrictionGetNumComponents(rstr_out, &num_comp_out)); in CeedOperatorAssembleSingleSetup_Hip()
[all …]
/libCEED/backends/cuda-ref/
H A Dceed-cuda-ref-operator.c1412 CeedElemRestriction assembled_rstr = NULL, rstr_in, rstr_out, diag_rstr; in CeedOperatorAssembleDiagonalCore_Cuda() local
1441 CeedCallBackend(CeedOperatorGetActiveElemRestrictions(op, &rstr_in, &rstr_out)); in CeedOperatorAssembleDiagonalCore_Cuda()
1442 CeedCheck(rstr_in == rstr_out, ceed, CEED_ERROR_BACKEND, in CeedOperatorAssembleDiagonalCore_Cuda()
1445 CeedCallBackend(CeedElemRestrictionCreateUnsignedCopy(rstr_out, &diag->diag_rstr)); in CeedOperatorAssembleDiagonalCore_Cuda()
1448 …CeedCallBackend(CeedOperatorCreateActivePointBlockRestriction(rstr_out, &diag->point_block_diag_rs… in CeedOperatorAssembleDiagonalCore_Cuda()
1452 CeedCallBackend(CeedElemRestrictionDestroy(&rstr_out)); in CeedOperatorAssembleDiagonalCore_Cuda()
1516 CeedElemRestriction rstr_in = NULL, rstr_out = NULL; in CeedOperatorAssembleSingleSetup_Cuda() local
1582 if (!rstr_out) CeedCallBackend(CeedElemRestrictionReferenceCopy(elem_rstr, &rstr_out)); in CeedOperatorAssembleSingleSetup_Cuda()
1584 CeedCallBackend(CeedElemRestrictionGetElementSize(rstr_out, &elem_size_out)); in CeedOperatorAssembleSingleSetup_Cuda()
1622 CeedCallBackend(CeedElemRestrictionGetNumComponents(rstr_out, &num_comp_out)); in CeedOperatorAssembleSingleSetup_Cuda()
[all …]
/libCEED/backends/sycl-ref/
H A Dceed-sycl-ref-operator.sycl.cpp639 CeedElemRestriction rstr_in = NULL, rstr_out = NULL; in CeedOperatorAssembleDiagonalSetup_Sycl() local
707 if (!rstr_out) CeedCallBackend(CeedElemRestrictionReferenceCopy(elem_rstr, &rstr_out)); in CeedOperatorAssembleDiagonalSetup_Sycl()
708 …CeedCheck(rstr_out == elem_rstr, ceed, CEED_ERROR_BACKEND, "Backend does not implement multi-field… in CeedOperatorAssembleDiagonalSetup_Sycl()
815 CeedCallBackend(CeedElemRestrictionReferenceCopy(rstr_out, &diag->diag_rstr)); in CeedOperatorAssembleDiagonalSetup_Sycl()
816 CeedCallBackend(CeedElemRestrictionDestroy(&rstr_out)); in CeedOperatorAssembleDiagonalSetup_Sycl()
1007 CeedElemRestriction rstr_in = NULL, rstr_out = NULL; in CeedOperatorAssembleSingleSetup_Sycl() local
1075 if (!rstr_out) CeedCallBackend(CeedElemRestrictionReferenceCopy(elem_rstr, &rstr_out)); in CeedOperatorAssembleSingleSetup_Sycl()
1076 …CeedCheck(rstr_out == rstr_in, ceed, CEED_ERROR_BACKEND, "Backend does not implement multi-field n… in CeedOperatorAssembleSingleSetup_Sycl()
1179 CeedCallBackend(CeedElemRestrictionDestroy(&rstr_out)); in CeedOperatorAssembleSingleSetup_Sycl()
/libCEED/interface/
H A Dceed-preconditioning.c931 CeedElemRestriction rstr_in, rstr_out; in CeedOperatorAssemblyCountEntriesSingle() local
936 CeedCall(CeedOperatorGetActiveElemRestrictions(op, &rstr_in, &rstr_out)); in CeedOperatorAssemblyCountEntriesSingle()
940 if (rstr_in != rstr_out) { in CeedOperatorAssemblyCountEntriesSingle()
941 CeedCall(CeedElemRestrictionGetNumElements(rstr_out, &num_elem_out)); in CeedOperatorAssemblyCountEntriesSingle()
946 CeedCall(CeedElemRestrictionGetElementSize(rstr_out, &elem_size_out)); in CeedOperatorAssemblyCountEntriesSingle()
947 CeedCall(CeedElemRestrictionGetNumComponents(rstr_out, &num_comp_out)); in CeedOperatorAssemblyCountEntriesSingle()
954 CeedCall(CeedElemRestrictionDestroy(&rstr_out)); in CeedOperatorAssemblyCountEntriesSingle()