Lines Matching refs:dctx
47 static PetscErrorCode TestPetscDeviceContextForkJoin(PetscDeviceContext dctx) in TestPetscDeviceContextForkJoin() argument
54 PetscCall(DoFork(dctx, n, &sub)); in TestPetscDeviceContextForkJoin()
55 PetscCall(PetscDeviceContextJoin(dctx, n, PETSC_DEVICE_CONTEXT_JOIN_DESTROY, &sub)); in TestPetscDeviceContextForkJoin()
57 PetscCall(DoFork(dctx, n, &sub)); in TestPetscDeviceContextForkJoin()
58 PetscCall(PetscDeviceContextJoin(dctx, n, PETSC_DEVICE_CONTEXT_JOIN_DESTROY, &sub)); in TestPetscDeviceContextForkJoin()
61 PetscCall(DoFork(dctx, n + 1, &sub)); in TestPetscDeviceContextForkJoin()
65 PetscCall(PetscDeviceContextJoin(dctx, n - 1, PETSC_DEVICE_CONTEXT_JOIN_NO_SYNC, &sub)); in TestPetscDeviceContextForkJoin()
67 PetscCall(PetscDeviceContextJoin(dctx, n + 1, PETSC_DEVICE_CONTEXT_JOIN_DESTROY, &sub)); in TestPetscDeviceContextForkJoin()
74 PetscDeviceContext dctx; in main() local
80 PetscCall(PetscDeviceContextCreate(&dctx)); in main()
81 PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dctx, "local_")); in main()
82 PetscCall(PetscDeviceContextSetFromOptions(comm, dctx)); in main()
83 PetscCall(TestPetscDeviceContextForkJoin(dctx)); in main()
84 PetscCall(PetscDeviceContextDestroy(&dctx)); in main()
86 PetscCall(PetscDeviceContextGetCurrentContext(&dctx)); in main()
87 PetscCall(TestPetscDeviceContextForkJoin(dctx)); in main()