summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #942 in HDFFV/hdf5 from develop to hdf5_1_10Scot Breitenfeld2018-03-123-26/+29
|\ | | | | | | | | | | * commit '612fefc435a9bc07ada6a380a54878f1cf71ae09': Remove obsolete files HDFFV-10418 adjust build commands to match main library build
| * Merge pull request #940 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-03-123-26/+29
| |\ | | | | | | | | | | | | | | | * commit '2adf6c741fcd984a3067373e03023e71a8d721a9': Remove obsolete files HDFFV-10418 adjust build commands to match main library build
| | * Remove obsolete filesAllen Byrne2018-03-121-7/+0
| | |
| | * Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2018-03-1231-448/+975
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '64565f9771a50138e77a806d7ab330e3919c1847': Code improvement Description: - Removed memory leaks caused by accidentally invoking p_get_member_type - Added the call to test_lcpl, missed previously Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test) Updated RELEASE.txt Description: - Wrappers for H5Lcreate_soft, H5Lcreate_hard, H5Lcopy, H5Lmove, H5Ldelete, and H5Lget_info - Class LinkCreatPropList - Fixed typo in source file Platforms tested: Linux/64 (jelly) Updated for H5LcreatProp.[h,cpp] Updated MANIFEST for H5LcreatProp.[h,cpp] HDFFV-10149 continued Description: - Moved the new wrappers committed on Mar 9: 43158f3bb352f374c31556a5d0dc463a09e0b32e to H5Location and renamed some of them for overloading. This is because the loc_id in the C APIs can be file, group, dataset, named datatype, and attribute. Previous implementation was wrong following some inaccurate C API reference manual. Improve code Description: Added notes and changed argument to H5Fcreate to clarify the latest situation Platforms tested: Linux/64 (jelly)
| | * | HDFFV-10418 adjust build commands to match main library buildAllen Byrne2018-03-122-19/+29
| | | |
* | | | Merge pull request #934 in HDFFV/hdf5 from hdf5_1_10_merge to hdf5_1_10Scot Breitenfeld2018-03-12258-9449/+13881
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'aaff21ff4cef6ffe364ae62e09e5da52a90b77c2': (105 commits) Unify the test (t_bigio.c) between hdf5_1_10 and develop Remove comparison to NULL for variables to be freed. Add HDfree of vector, matrix_out and matrix_out1 previously HDmalloced in coll_write_test(). merged from develop merged from develop removed duplicate code Code improvement Description: - Removed memory leaks caused by accidentally invoking p_get_member_type - Added the call to test_lcpl, missed previously Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test) Updated RELEASE.txt Description: - Wrappers for H5Lcreate_soft, H5Lcreate_hard, H5Lcopy, H5Lmove, H5Ldelete, and H5Lget_info - Class LinkCreatPropList - Fixed typo in source file Platforms tested: Linux/64 (jelly) Updated for H5LcreatProp.[h,cpp] Updated MANIFEST for H5LcreatProp.[h,cpp] HDFFV-10149 continued Description: - Moved the new wrappers committed on Mar 9: 43158f3bb352f374c31556a5d0dc463a09e0b32e to H5Location and renamed some of them for overloading. This is because the loc_id in the C APIs can be file, group, dataset, named datatype, and attribute. Previous implementation was wrong following some inaccurate C API reference manual. Re-factor coding for H5P/Sencode with libver bounds. Removed commented out code from H5FDmpio.c, H5FDprivate.h and H5Fint.c Upated cpp doc. Added C++ wrappers - HDFFV-10149 Description: Added the following wrappers to class H5::Group: + H5Lcreate_soft: // Creates a soft link from link_name to target_name. void newLink(const char *target_name, const char *link_name,...) void newLink(const H5std_string& target_name,...) Improve code Description: Added notes and changed argument to H5Fcreate to clarify the latest situation Platforms tested: Linux/64 (jelly) Resolve compilation errors. Add release note Remove obsolete comments Change CMake min to 3.10 ...
| * \ \ \ Merge branch 'develop' into hdf5_1_10_mergeM. Scot Breitenfeld2018-03-124-23/+150
| |\ \ \ \ | | |/ / /
| | * | | Merge pull request #941 in HDFFV/hdf5 from t_bigio_develop to developRichard Warren2018-03-121-316/+79
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * commit '1a3beaadce81ad257d186c9dca8906577cce58b0': Unify the test (t_bigio.c) between hdf5_1_10 and develop
| | | * | | Unify the test (t_bigio.c) between hdf5_1_10 and developRichard Warren2018-03-121-316/+79
| | |/ / /
| | * | | Merge pull request #939 in HDFFV/hdf5 from ↵Larry Knox2018-03-121-1/+8
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ~LRKNOX/hdf5_lrk:HDFFV-10397-testphdf5-has-some-memory-leaks to develop * commit '5d7c18fcfc14a53f4d6321460463357fbda61f4b': Remove comparison to NULL for variables to be freed. Add HDfree of vector, matrix_out and matrix_out1 previously HDmalloced in coll_write_test().
| | | * | | Remove comparison to NULL for variables to be freed.lrknox2018-03-121-3/+3
| | | | | |
| | | * | | Add HDfree of vector, matrix_out and matrix_out1 previously HDmallocedlrknox2018-03-121-1/+8
| | |/ / / | | | | | | | | | | | | | | | in coll_write_test().
| | * | | Merge pull request #938 in HDFFV/hdf5 from avoid_trunc_beta to developScot Breitenfeld2018-03-123-22/+142
| | |\ \ \ | | | |_|/ | | |/| | | | | | | | | | | | | | | | | * commit '4823abf3ee0d9df1c3f23ae7e36ce4d1d146afd6': Removed commented out code from H5FDmpio.c, H5FDprivate.h and H5Fint.c Optimized version of avoid truncate patch.
| | | * | Removed commented out code from H5FDmpio.c, H5FDprivate.h and H5Fint.cmainzer2018-03-123-92/+0
| | | | | | | | | | | | | | | | | | | | Tested parallel (debug and production) and serial (production)
| | | * | Merge branch 'develop' into avoid_trunc_betaM. Scot Breitenfeld2018-03-052-0/+20
| | | |\ \
| | | * \ \ Merge branch 'develop' into avoid_trunc_betaM. Scot Breitenfeld2018-03-0287-784/+718
| | | |\ \ \
| | | * \ \ \ Merge branch 'develop' into avoid_trunc_betaM. Scot Breitenfeld2018-02-20172-8450/+12047
| | | |\ \ \ \
| | | * \ \ \ \ Merge branch 'develop' into avoid_trunc_betaM. Scot Breitenfeld2018-01-22130-5481/+7846
| | | |\ \ \ \ \
| | | * | | | | | Optimized version of avoid truncate patch.M. Scot Breitenfeld2017-12-183-0/+212
| | | | | | | | |
| * | | | | | | | Merge branch 'develop' into hdf5_1_10_mergeM. Scot Breitenfeld2018-03-12118-2063/+1493
| |\ \ \ \ \ \ \ \ | | |/ / / / / / /
| | * | | | | | | Merge pull request #936 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp3:develop ↵Binh-Minh Ribler2018-03-1230-442/+956
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to develop Modified 43158f3bb352f374c31556a5d0dc463a09e0b32e and additional wrappers. * commit 'b638bbd74b79f935a43aa6a804492e035ec315f6': Code improvement Description: - Removed memory leaks caused by accidentally invoking p_get_member_type - Added the call to test_lcpl, missed previously Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test) Updated RELEASE.txt Description: - Wrappers for H5Lcreate_soft, H5Lcreate_hard, H5Lcopy, H5Lmove, H5Ldelete, and H5Lget_info - Class LinkCreatPropList - Fixed typo in source file Platforms tested: Linux/64 (jelly) Updated for H5LcreatProp.[h,cpp] Updated MANIFEST for H5LcreatProp.[h,cpp] HDFFV-10149 continued Description: - Moved the new wrappers committed on Mar 9: 43158f3bb352f374c31556a5d0dc463a09e0b32e to H5Location and renamed some of them for overloading. This is because the loc_id in the C APIs can be file, group, dataset, named datatype, and attribute. Previous implementation was wrong following some inaccurate C API reference manual.
| | | * | | | | | | Code improvementBinh-Minh Ribler2018-03-122-25/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Removed memory leaks caused by accidentally invoking p_get_member_type - Added the call to test_lcpl, missed previously Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test)
| | | * | | | | | | Updated RELEASE.txtBinh-Minh Ribler2018-03-122-2/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Wrappers for H5Lcreate_soft, H5Lcreate_hard, H5Lcopy, H5Lmove, H5Ldelete, and H5Lget_info - Class LinkCreatPropList - Fixed typo in source file Platforms tested: Linux/64 (jelly)
| | | * | | | | | | Updated for H5LcreatProp.[h,cpp]Binh-Minh Ribler2018-03-121-0/+2
| | | | | | | | | |
| | | * | | | | | | Updated MANIFEST for H5LcreatProp.[h,cpp]Binh-Minh Ribler2018-03-121-0/+2
| | | | | | | | | |
| | | * | | | | | | HDFFV-10149 continuedBinh-Minh Ribler2018-03-1227-422/+875
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Moved the new wrappers committed on Mar 9: 43158f3bb352f374c31556a5d0dc463a09e0b32e to H5Location and renamed some of them for overloading. This is because the loc_id in the C APIs can be file, group, dataset, named datatype, and attribute. Previous implementation was wrong following some inaccurate C API reference manual. - Only the following wrappers are modified or added: + H5Lcreate_soft: changed name from newLink to link // Creates a soft link from link_name to target_name. void link(const char *target_name, const char *link_name,...) void link(const H5std_string& target_name,...) + H5Lcreate_hard: changed name from newLink to link // Creates a hard link from new_name to curr_name. void link(const char *curr_name, const Group& new_loc,...) void link(const H5std_string& curr_name, const Group& new_loc,...) // Creates a hard link from new_name to curr_name in same location. void link(const char *curr_name, const hid_t same_loc,...) void link(const H5std_string& curr_name, const hid_t same_loc,...) + H5Ldelete: modified existing functions to add 2nd argument // Removes the specified link from this location. void unlink(const char *link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) void unlink(const H5std_string& link_name, const LinkAccPropList& lapl = LinkAccPropList::DEFAULT) - copyLink and moveLink were only moved from Group to H5Location, no change - Added class LinkCreatPropList - Added overloaded functions H5Location::createGroup to take a link creation property list Group createGroup(const char* name, const LinkCreatPropList& lcpl) Group createGroup(const H5std_string& name, const LinkCreatPropList& lcpl) - Added wrapper for H5Lget_info() to H5Location H5L_info_t getLinkInfo(const H5std_string& link_name,...) Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test)
| | * | | | | | | | Merge pull request #935 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr:develop to developBinh-Minh Ribler2018-03-121-6/+19
| | |\ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Notes for gen_bounds.c * commit '8155dba8d7cb8dbe2532c17c7ea5a27f52e3095b': Improve code Description: Added notes and changed argument to H5Fcreate to clarify the latest situation Platforms tested: Linux/64 (jelly)
| | | * | | | | | | Merge branch 'develop' of ↵Binh-Minh Ribler2018-03-109-18/+246
| | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_bmr into develop
| | | * | | | | | | | Improve codeBinh-Minh Ribler2018-03-101-6/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: Added notes and changed argument to H5Fcreate to clarify the latest situation Platforms tested: Linux/64 (jelly)
| | * | | | | | | | | Merge pull request #932 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-03-1282-1683/+157
| | |\ \ \ \ \ \ \ \ \ | | | |_|_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '75db73efc514aff2af63618cc7be357fc4e77cb6': Add release note Remove obsolete comments Change CMake min to 3.10
| | | * | | | | | | | Add release noteAllen Byrne2018-03-091-0/+10
| | | | | | | | | | |
| | | * | | | | | | | Remove obsolete commentsAllen Byrne2018-03-091-11/+0
| | | | | | | | | | |
| | | * | | | | | | | Change CMake min to 3.10Allen Byrne2018-03-0981-1672/+147
| | | | |/ / / / / / | | | |/| | | | | |
| | * | | | | | | | Merge pull request #833 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp3:develop ↵Binh-Minh Ribler2018-03-1021-301/+730
| | |\ \ \ \ \ \ \ \ | | | |/ / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to develop Update for new support website. * commit '801191b4c374adc462345f2c068f1cfc6f4adf97': Upated cpp doc. Added C++ wrappers - HDFFV-10149 Description: Added the following wrappers to class H5::Group: + H5Lcreate_soft: // Creates a soft link from link_name to target_name. void newLink(const char *target_name, const char *link_name,...) void newLink(const H5std_string& target_name,...) Update for new support website Description: - Replaced external links with text including the C API name - Removed links of copyright at the bottom of each page - Removed logo at top - Removed document name and version number Platforms tested: Linux/32 2.6 (jam) - only documentation
| | | * | | | | | | Upated cpp doc.Binh-Minh Ribler2018-03-101-1/+1
| | | | | | | | | |
| | | * | | | | | | Added C++ wrappers - HDFFV-10149Binh-Minh Ribler2018-03-104-146/+628
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: Added the following wrappers to class H5::Group: + H5Lcreate_soft: // Creates a soft link from link_name to target_name. void newLink(const char *target_name, const char *link_name,...) void newLink(const H5std_string& target_name,...) + H5Lcreate_hard: // Creates a hard link from new_name to curr_name. void newLink(const char *curr_name, const Group& new_loc,...) void newLink(const H5std_string& curr_name, const Group& new_loc,...) // Creates a hard link from new_name to curr_name in same location. void newLink(const char *curr_name, const hid_t same_loc,...) void newLink(const H5std_string& curr_name, const hid_t same_loc,...) + H5Lcopy: // Copy an object from a group of file to another. void copyLink(const char *src_name, const Group& dst,...) void copyLink(const H5std_string& src_name, const Group& dst,...) // Copy an object from a group of file to the same location. void copyLink(const char *src_name, const char *dst_name,...) void copyLink(const H5std_string& src_name,...) + H5Lmove: // Rename an object in a group or file to a new location. void moveLink(const char* src_name, const Group& dst,...) void moveLink(const H5std_string& src_name, const Group& dst,...) // Rename an object in a group or file to the same location. void moveLink(const char* src_name, const char* dst_name,...) void moveLink(const H5std_string& src_name,...) Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich) Darwin (osx1010test)
| | | * | | | | | | Merge branch 'develop' of ↵Binh-Minh Ribler2017-12-2156-2343/+4328
| | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_bmr_cpp3 into develop
| | | * | | | | | | | Update for new support websiteBinh-Minh Ribler2017-12-2118-156/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Replaced external links with text including the C API name - Removed links of copyright at the bottom of each page - Removed logo at top - Removed document name and version number Platforms tested: Linux/32 2.6 (jam) - only documentation
| * | | | | | | | | | merged from developM. Scot Breitenfeld2018-03-121-2/+2
| | | | | | | | | | |
| * | | | | | | | | | merged from developM. Scot Breitenfeld2018-03-121-0/+1
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'hdf5_1_10_merge' of ↵M. Scot Breitenfeld2018-03-125-38/+68
| |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ssh://bitbucket.hdfgroup.org:7999/hdffv/hdf5 into hdf5_1_10_merge
| | * \ \ \ \ \ \ \ \ \ Merge pull request #937 in HDFFV/hdf5 from ↵Vailin Choi2018-03-125-38/+68
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ~VCHOI/my_hdf5_fork:hdf5_1_10_merge to hdf5_1_10_merge * commit 'd1d91213d0813aed366b2d66a9c031c319070f18': Re-factor coding for H5P/Sencode with libver bounds.
| | | * \ \ \ \ \ \ \ \ \ Merge branch 'hdf5_1_10_merge' of ↵Vailin Choi2018-03-1218-173/+1025
| | | |\ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | https://bitbucket.hdfgroup.org/scm/~vchoi/my_hdf5_fork into hdf5_1_10_merge
| | | * | | | | | | | | | Re-factor coding for H5P/Sencode with libver bounds.Vailin Choi2018-03-125-38/+68
| | | | | | | | | | | | |
| * | | | | | | | | | | | removed duplicate codeM. Scot Breitenfeld2018-03-121-19/+0
| |/ / / / / / / / / / /
| * | | | | | | | | | | Merge branch 'develop' into hdf5_1_10_mergeM. Scot Breitenfeld2018-03-0918-173/+1025
| |\ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / | | |/| | | | | | | | |
| | * | | | | | | | | | Merge pull request #929 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-03-099-18/+246
| | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '13f5388149a0dd39a6f67d30d63c6d622e249fd9': HDFFV-4359 Add HL C++ and fix install parameters HDFFV-4359 Add C,HL,CXX files
| | | * | | | | | | | | | HDFFV-4359 Add HL C++ and fix install parametersAllen Byrne2018-03-084-4/+61
| | | | | | | | | | | | |
| | | * | | | | | | | | | HDFFV-4359 Add C,HL,CXX filesAllen Byrne2018-03-087-18/+189
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merge pull request #930 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr:develop to developBinh-Minh Ribler2018-03-091-1/+1
| | |\ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / / | | |/| | | | / / / / / / | | | | |_|_|/ / / / / / | | | |/| | | | | | | | * commit '7c293908a772dd19d69872b4dbf1fdcbbbf5f94f': Improving tests Description: Fixed typos that caused daily test failure on Ostrich Platforms tested: Linux/64 (jelly) Linux/ppc64 (ostrich)