Lines Matching refs:vwr

40 static PetscErrorCode MarkedObjectMapView(PetscViewer vwr, std::size_t nkeys, const PetscObjectId *…  in MarkedObjectMapView()  argument
43 if (!vwr) PetscCall(PetscViewerASCIIGetStdout(PETSC_COMM_WORLD, &vwr)); in MarkedObjectMapView()
44 PetscCall(PetscViewerFlush(vwr)); in MarkedObjectMapView()
45 PetscCall(PetscViewerASCIIPushSynchronized(vwr)); in MarkedObjectMapView()
46 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "Marked Object Map:\n")); in MarkedObjectMapView()
47 PetscCall(PetscViewerASCIIPushTab(vwr)); in MarkedObjectMapView()
48 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "size: %zu\n", nkeys)); in MarkedObjectMapView()
49 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "entries:\n")); in MarkedObjectMapView()
50 PetscCall(PetscViewerASCIIPushTab(vwr)); in MarkedObjectMapView()
52 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "id %" PetscInt64_FMT " -> {\n", keys[i])); in MarkedObjectMapView()
53 PetscCall(PetscViewerASCIIPushTab(vwr)); in MarkedObjectMapView()
54 …PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "mode: %s\n", PetscMemoryAccessModeToString(mode… in MarkedObjectMapView()
55 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "dependencies:\n")); in MarkedObjectMapView()
56 PetscCall(PetscViewerASCIIPushTab(vwr)); in MarkedObjectMapView()
60 …PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "event %zu {dtype: %s, dctx_id: %" PetscInt64_FM… in MarkedObjectMapView()
63 PetscCall(PetscViewerASCIIPopTab(vwr)); in MarkedObjectMapView()
64 PetscCall(PetscViewerASCIIPopTab(vwr)); in MarkedObjectMapView()
65 PetscCall(PetscViewerASCIISynchronizedPrintf(vwr, "}\n")); in MarkedObjectMapView()
67 PetscCall(PetscViewerASCIIPopTab(vwr)); in MarkedObjectMapView()
68 PetscCall(PetscViewerASCIIPopTab(vwr)); in MarkedObjectMapView()
69 PetscCall(PetscViewerFlush(vwr)); in MarkedObjectMapView()
70 PetscCall(PetscViewerASCIIPopSynchronized(vwr)); in MarkedObjectMapView()
81 PetscViewer vwr; in CheckMarkedObjectMap_Private() local
87 PetscCall(PetscViewerASCIIGetStdout(comm, &vwr)); in CheckMarkedObjectMap_Private()
88 if (dctx) PetscCall(PetscDeviceContextView(dctx, vwr)); in CheckMarkedObjectMap_Private()
89 PetscCall(MarkedObjectMapView(vwr, nkeys, keys, modes, ndeps, dependencies)); in CheckMarkedObjectMap_Private()