Lines Matching refs:dset_id
420 hid_t dset_id; /* dataset identifier */ in VecView_MPI_HDF5_DA() local
516 …PetscCallHDF5Return(dset_id, H5Dcreate2, (group, vecname, filescalartype, filespace, H5P_DEFAULT, … in VecView_MPI_HDF5_DA()
518 PetscCallHDF5Return(dset_id, H5Dopen2, (group, vecname, H5P_DEFAULT)); in VecView_MPI_HDF5_DA()
519 PetscCallHDF5(H5Dset_extent, (dset_id, dims)); in VecView_MPI_HDF5_DA()
549 PetscCallHDF5Return(filespace, H5Dget_space, (dset_id)); in VecView_MPI_HDF5_DA()
553 PetscCallHDF5(H5Dwrite, (dset_id, memscalartype, memspace, filespace, hdf5->dxpl_id, x)); in VecView_MPI_HDF5_DA()
569 PetscCallHDF5(H5Dclose, (dset_id)); in VecView_MPI_HDF5_DA()
774 hid_t dset_id; /* dataset identifier */ in VecLoad_HDF5_DA() local
801 PetscCallHDF5Return(dset_id, H5Dopen2, (group, vecname, H5P_DEFAULT)); in VecLoad_HDF5_DA()
804 PetscCallHDF5Return(filespace, H5Dget_space, (dset_id)); in VecLoad_HDF5_DA()
865 PetscCallHDF5(H5Dread, (dset_id, scalartype, memspace, filespace, hdf5->dxpl_id, x)); in VecLoad_HDF5_DA()
872 PetscCallHDF5(H5Dclose, (dset_id)); in VecLoad_HDF5_DA()