Lines Matching refs:view_hdf5_ctx
895 PetscViewerAndFormat *view_hdf5_ctx; member
935 options->view_hdf5_ctx = NULL; in ProcessOptions()
985 PetscCall(PetscViewerAndFormatCreate(viewer, PETSC_VIEWER_HDF5_VIZ, &options->view_hdf5_ctx)); in ProcessOptions()
986 options->view_hdf5_ctx->view_interval = 1; in ProcessOptions()
987 … "Save every interval time steps", NULL, options->view_hdf5_ctx->view_interval, &options->view_hdf… in ProcessOptions()
2069 …Bool)(ctx->view_hdf5_ctx && ((ctx->view_hdf5_ctx->view_interval > 0 && !(stepnum % ctx->view_hdf5_… in Monitor()
2072 if (ctx->view_hdf5_ctx) need_hdf5 = PETSC_TRUE; in Monitor()
2091 PetscCall(PetscViewerPushFormat(ctx->view_hdf5_ctx->viewer, ctx->view_hdf5_ctx->format)); in Monitor()
2092 PetscCall(DMView(vdm, ctx->view_hdf5_ctx->viewer)); in Monitor()
2093 PetscCall(PetscViewerPopFormat(ctx->view_hdf5_ctx->viewer)); in Monitor()
2098 PetscCall(PetscViewerPushFormat(ctx->view_hdf5_ctx->viewer, ctx->view_hdf5_ctx->format)); in Monitor()
2099 PetscCall(VecView(diagnostic, ctx->view_hdf5_ctx->viewer)); in Monitor()
2102 PetscCall(VecView(u, ctx->view_hdf5_ctx->viewer)); in Monitor()
2104 PetscCall(PetscViewerPopFormat(ctx->view_hdf5_ctx->viewer)); in Monitor()
2349 if (ctx->view_hdf5_ctx) PetscCall(PetscViewerAndFormatDestroy(&ctx->view_hdf5_ctx)); in Run()