Home
last modified time | relevance | path

Searched refs:request (Results 1 – 25 of 28) sorted by relevance

12

/petsc/src/sys/webclient/
H A Dclient.c106 char *request = 0; in PetscHTTPBuildRequest() local
138 PetscCall(PetscMalloc1(request_len, &request)); in PetscHTTPBuildRequest()
139 PetscCall(PetscStrncpy(request, type, request_len)); in PetscHTTPBuildRequest()
140 PetscCall(PetscStrlcat(request, " ", request_len)); in PetscHTTPBuildRequest()
141 PetscCall(PetscStrlcat(request, path, request_len)); in PetscHTTPBuildRequest()
142 PetscCall(PetscStrlcat(request, " HTTP/1.1\r\nHost: ", request_len)); in PetscHTTPBuildRequest()
143 PetscCall(PetscStrlcat(request, host, request_len)); in PetscHTTPBuildRequest()
145 PetscCall(PetscStrlcat(request, "\r\nUser-Agent:PETScClient\r\n", request_len)); in PetscHTTPBuildRequest()
146 PetscCall(PetscStrlcat(request, header, request_len)); in PetscHTTPBuildRequest()
147 if (ctype) PetscCall(PetscStrlcat(request, contenttype, request_len)); in PetscHTTPBuildRequest()
[all …]
/petsc/doc/developers/
H A Dmrfork.md3 # Checkout fork merge request branch
5 `Developers` at times, need to checkout and build changes from a merge request fork branch. Any one…
7 …COMMIT-SHA` of the branch HEAD. It is available on the "Commits" tab of the merge request web page.
14 …RL`. The `URL with branchname` is available as "Source branch" hyperlink on merge request web page.
21 - Setup a local Git clone to access the merge request branch via the `MR-NUMBER`. Here use the foll…
38 # Commit and push changes to a merge request fork branch
40 Only `Owners/Maintainers` can push commits to a merge request fork branch. Here, use the `ssh-URL` …
52 For example, with `merge request` at <https://gitlab.com/petsc/petsc/-/merge_requests/8619> we have:
H A Dmrmanagement.md3 # Merge request management
/petsc/include/petsc/mpiuni/
H A Dmpi.h424request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), M… argument
425request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), M… argument
426request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), M… argument
428request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), MP… argument
430request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), … argument
431 …#define MPI_Wait(request, status) (M… argument
432 …#define MPI_Test(request, flag, status) (M… argument
433 …#define MPI_Request_free(request) (M… argument
445 …#define MPI_Cancel(request) (M… argument
448request) (MPIUNI_ARG(buf), MPIUNI_ARG(count), MPIUNI_ARG(datatype), MPIU… argument
[all …]
/petsc/include/
H A Dpetsclog.h491 #define MPI_Irecv(buf, count, datatype, source, tag, comm, request) \ argument
492 …(petsc_irecv_len_th)) || MPI_Irecv((buf), (count), (datatype), (source), (tag), (comm), (request)))
494 #define MPI_Irecv_c(buf, count, datatype, source, tag, comm, request) \ argument
495 …etsc_irecv_len_th)) || MPI_Irecv_c((buf), (count), (datatype), (source), (tag), (comm), (request)))
497 #define MPI_Isend(buf, count, datatype, dest, tag, comm, request) \ argument
498 … &(petsc_isend_len_th)) || MPI_Isend((buf), (count), (datatype), (dest), (tag), (comm), (request)))
500 #define MPI_Isend_c(buf, count, datatype, dest, tag, comm, request) \ argument
501 …(petsc_isend_len_th)) || MPI_Isend_c((buf), (count), (datatype), (dest), (tag), (comm), (request)))
523request, status) (PetscAddLogDouble(&petsc_wait_ct, &petsc_wait_ct_th, 1) || PetscAddLogDouble(&pe… argument
561 … #define MPI_Ialltoall(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request) \ argument
[all …]
H A Dpetscsys.h2744 … count, MPI_Datatype dtype, PetscMPIInt dest, PetscMPIInt tag, MPI_Comm comm, MPI_Request *request) in MPIU_Send_init() argument
2749 err = MPI_Send_init((void *)buf, count2, dtype, dest, tag, comm, request); in MPIU_Send_init()
2753 … count, MPI_Datatype dtype, PetscMPIInt dest, PetscMPIInt tag, MPI_Comm comm, MPI_Request *request) in MPIU_Isend() argument
2758 err = MPI_Isend((void *)buf, count2, dtype, dest, tag, comm, request); in MPIU_Isend()
2771 …ount, MPI_Datatype dtype, PetscMPIInt source, PetscMPIInt tag, MPI_Comm comm, MPI_Request *request) in MPIU_Recv_init() argument
2776 err = MPI_Recv_init((void *)buf, count2, dtype, source, tag, comm, request); in MPIU_Recv_init()
2780 …ount, MPI_Datatype dtype, PetscMPIInt source, PetscMPIInt tag, MPI_Comm comm, MPI_Request *request) in MPIU_Irecv() argument
2785 err = MPI_Irecv((void *)buf, count2, dtype, source, tag, comm, request); in MPIU_Irecv()
2843 …uf, count, dtype, dest, tag, comm, request) MPI_Send_init_c(buf, (MPI_Count)(count), dtype, dest… argument
2844 …uf, count, dtype, dest, tag, comm, request) MPI_Isend_c(buf, (MPI_Count)(count), dtype, dest… argument
[all …]
/petsc/src/vec/vec/utils/
H A Dcomb.c23 …*recvbuf, PetscMPIInt count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) in MPIU_Iallreduce() argument
28 err = MPI_Iallreduce(sendbuf, recvbuf, count, datatype, op, comm, request); in MPIU_Iallreduce()
31 *request = MPI_REQUEST_NULL; in MPIU_Iallreduce()
53 (*sr)->request = MPI_REQUEST_NULL; in PetscSplitReductionCreate()
148 …values_mix, sr->gvalues_mix, numops, MPIU_SCALAR_INT, PetscSplitReduction_Op, comm, &sr->request)); in PetscCommSplitReductionBegin()
150 …CallMPI(MPIU_Iallreduce(lvalues, gvalues, cmul * numops, MPIU_REAL, MPIU_MAX, comm, &sr->request)); in PetscCommSplitReductionBegin()
152 …CallMPI(MPIU_Iallreduce(lvalues, gvalues, cmul * numops, MPIU_REAL, MPIU_MIN, comm, &sr->request)); in PetscCommSplitReductionBegin()
154 …PetscCallMPI(MPIU_Iallreduce(lvalues, gvalues, numops, MPIU_SCALAR, MPIU_SUM, comm, &sr->request)); in PetscCommSplitReductionBegin()
176 if (sr->request != MPI_REQUEST_NULL) PetscCallMPI(MPI_Wait(&sr->request, MPI_STATUS_IGNORE)); in PetscSplitReductionEnd()
/petsc/
H A DCONTRIBUTING8 the concept on a GitLab issue, merge request,
13 act of submitting a pull request or patch (with or without an explicit
/petsc/src/sys/mpiuni/
H A Dmpi.c694 …v_(void *buf, int *count, int *datatype, int *source, int *tag, int *comm, int *request, int *ierr) in petsc_mpi_irecv_() argument
699 …end_(void *buf, int *count, int *datatype, int *dest, int *tag, int *comm, int *request, int *ierr) in petsc_mpi_isend_() argument
709 PETSC_EXTERN void petsc_mpi_test_(int *request, int *flag, int *status, int *ierr) in petsc_mpi_test_() argument
776 PETSC_EXTERN void petsc_mpi_cancel_(int *request, int *ierr) in petsc_mpi_cancel_() argument
820 PETSC_EXTERN void petsc_mpi_request_free_(int *request, int *ierr) in petsc_mpi_request_free_() argument
830 PETSC_EXTERN void petsc_mpi_wait_(int *request, int *status, int *ierr) in petsc_mpi_wait_() argument
/petsc/doc/developers/contributing/
H A Dsubmittingmr.md5 `git push` prints a URL to the terminal that you can use to start a merge request.
9 - If the merge request resolves an outstanding [issue](https://gitlab.com/petsc/petsc/issues),
26 - Make sure the fork is public -- as GitLab merge request process does not work well with a private…
84 manner, they may assign additional reviewers to the MR and request in the MR discussion these same …
H A Dpipelines.md10 The pipeline status for a merge request (MR) is displayed near the top of the MR page and in the pi…
18 Pipeline status for a merge request (MR)
H A Ddevelopingmr.md11 merge request.
/petsc/lib/petsc/bin/
H A Dpetscnagupgrade.py40 from urllib.request import urlopen
/petsc/src/ts/characteristic/interface/
H A Dcharacteristic.c65 PetscCall(PetscFree((*c)->request)); in CharacteristicDestroy()
131 newC->request = NULL; in CharacteristicCreate()
586 …Count[n], 1, MPIU_INT, c->neighbors[n], tag, PetscObjectComm((PetscObject)c), &c->request[n - 1])); in CharacteristicSendCoordinatesBegin()
588 PetscCallMPI(MPI_Waitall(c->numNeighbors - 1, c->request, c->status)); in CharacteristicSendCoordinatesBegin()
609 …Count[n], c->itemType, c->neighbors[n], tag, PetscObjectComm((PetscObject)c), &c->request[n - 1])); in CharacteristicSendCoordinatesBegin()
626 PetscCallMPI(MPI_Waitall(c->numNeighbors - 1, c->request, c->status)); in CharacteristicSendCoordinatesEnd()
641 …Count[n], c->itemType, c->neighbors[n], tag, PetscObjectComm((PetscObject)c), &c->request[n - 1])); in CharacteristicGetValuesBegin()
649 PetscCallMPI(MPI_Waitall(c->numNeighbors - 1, c->request, c->status)); in CharacteristicGetValuesEnd()
/petsc/src/mat/graphops/coarsen/impls/hem/
H A Dhem.c830 MPI_Request *request; in MatCoarsenApply_HEM_private() local
839 request = (MPI_Request *)sbuff; in MatCoarsenApply_HEM_private()
858 PetscCallMPI(MPIU_Isend(sbuff, scount, MPIU_INT, proc, tag1, comm, request)); in MatCoarsenApply_HEM_private()
866 MPI_Request *request; in MatCoarsenApply_HEM_private() local
897 request = (MPI_Request *)sbuff; in MatCoarsenApply_HEM_private()
923 PetscCallMPI(MPIU_Isend(sbuff, scount, MPIU_INT, proc, tag2, comm, request)); in MatCoarsenApply_HEM_private()
956 MPI_Request *request = (MPI_Request *)sbuffs1[proc_idx]; in MatCoarsenApply_HEM_private() local
958 PetscCallMPI(MPI_Wait(request, &status)); in MatCoarsenApply_HEM_private()
963 MPI_Request *request = (MPI_Request *)sbuffs2[proc_idx]; in MatCoarsenApply_HEM_private() local
965 PetscCallMPI(MPI_Wait(request, &status)); in MatCoarsenApply_HEM_private()
/petsc/include/petsc/private/
H A Dcharacteristicimpl.h79 MPI_Request *request; /* Requests for sizes/velocities/fields from other processes */ member
H A Dpetscscalapack.h52 BLAS_EXTERN void Cblacs_get(PetscBLASInt context, PetscBLASInt request, PetscBLASInt *value…
/petsc/config/BuildSystem/config/packages/
H A DSAMRAI.py28 from urllib.request import urlretrieve
/petsc/doc/community/
H A Dgovernance.md27 Consensus means that we entrust everyone with the right to request a decision by the PETSc Council.
28 The mere specter of a council review request ensures that community members
44 When a decision cannot be made by community consensus, community members may request a formal vote …
H A Dmailing.md38 making your edits, and following the instructions to make a merge request. Merge requests for such …
/petsc/src/ts/characteristic/impls/da/
H A Dslda.c65 PetscCall(PetscMalloc1(c->numNeighbors - 1, &c->request)); in CharacteristicSetUp_DA()
/petsc/src/ksp/pc/impls/mpi/
H A Dpcmpi.c483 static PetscErrorCode PCMPIServerBroadcastRequest(PCMPICommand request) in PCMPIServerBroadcastRequest() argument
495 PetscCallMPI(MPI_Bcast(&request, 1, MPIU_ENUM, 0, MPI_COMM_WORLD)); in PCMPIServerBroadcastRequest()
607 PCMPICommand request = PCMPI_CREATE; in PCMPIServerBegin() local
616 PetscCallMPI(MPI_Bcast(&request, 1, MPIU_ENUM, 0, PC_MPI_COMM_WORLD)); in PCMPIServerBegin()
624 switch (request) { in PCMPIServerBegin()
/petsc/src/ksp/ksp/impls/cg/pipelcg/
H A Dpipelcg.c102 …*recvbuf, PetscMPIInt count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm, MPI_Request *request) in MPIU_Iallreduce() argument
106 err = MPI_Iallreduce(sendbuf, recvbuf, count, datatype, op, comm, request); in MPIU_Iallreduce()
109 *request = MPI_REQUEST_NULL; in MPIU_Iallreduce()
/petsc/config/BuildSystem/
H A Dretrieval.py195 from urllib.request import Request, urlopen
/petsc/doc/install/
H A Dlicense.md43 act of submitting a merge request (with or without an explicit Signed-off-by tag) will be

12