summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_ttconv.c
Commit message (Collapse)AuthorAgeFilesLines
* Add support for variable length types (not within compound or array, with no ↵Neil Fortner2017-05-211-1/+1
| | | | sub-type conversions) with attributes. Added h5dsm_tvlen.c to test this. Other minor fixes/cleanup.
* Fix memory leak in collective group open through soft links. MinorNeil Fortner2017-05-051-29/+59
| | | | changes to examples.
* Implement H5Oopen, H5Oopen_by_addr, H5Acreate_by_name, H5Aopen_by_name,Neil Fortner2017-05-011-12/+8
| | | | | and H5Aiterate_by_name. Add h5dsm_obj_open.c example. Fix memory leak on dataset open. Other minor fixes/cleanup.
* Update DAOS plugin to work with latest version of DAOS, based on work by ↵Neil Fortner2017-04-271-2/+42
| | | | | | | Mohamad Chaarawi. Temporarily modify h5dsm_ttconv.c to avoid triggering failures due to DAOS not supporting overwrites.
* Add support for collective group create and open, usingNeil Fortner2017-04-241-0/+2
| | | | | H5Pset_all_coll_metadata_ops. Improved file create/open using this code. Modified examples to use this feature. Other minor fixes/cleanup.
* Add support for datatype conversion with datasets, including withNeil Fortner2017-03-161-6/+1097
| | | | | partial I/O. Add test cases covering this to h5dsm_ttconv.c. Other fixes to general type conversion code. Other minor fixes/cleanup.
* Modify plugin to use H5VL_daosm_term as the plugin's terminate callback,Neil Fortner2017-03-161-4/+0
| | | | | now called when the plugin is closed (see merge from vol branch). Removed cal to H5Idec_ref from H5VL_daosm_term. Removed H5VLdaosm_term from examples.
* Modify DAOS-M plugin to call daos_pool_connect at plugin initializationNeil Fortner2017-03-141-4/+9
| | | | time, using a communicator passed to the initialization function. Add public functions H5VLdaosm_init and H5VLdaosm_term. Apps no longer need to call daos_init and daos_fini. Updated examples. Other minor fixes/cleanup.
* Fix attribute datatype conversion implementation to always supplyNeil Fortner2017-03-081-0/+922
background buffer for compound conversion, as the library requires (despite the reference manual saying it's optional). Added h5dsm_ttconv.c to test this. Other minor fixes/cleanup.