Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [svn-r17072] Description: | Scot Breitenfeld | 2009-06-17 | 1 | -67/+47 | |
| | | | | Added additional tests for H5LRcreate_regref_to_all, cleaned up code. | |||||
* | [svn-r17071] Added hl examples for region references and hyperslabs. | Scot Breitenfeld | 2009-06-17 | 1 | -0/+7 | |
| | ||||||
* | [svn-r17070] Description: | Scot Breitenfeld | 2009-06-17 | 2 | -2/+20 | |
| | | | | Added new examples for region references and hyperslab reading/writing/manipulating. | |||||
* | [svn-r17069] This program shows how to create a dataset and region ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+133 | |
| | | | | | | | | references associated with hyperslabs. It then creates a new dataset composed of data from the data associated with a recursive loop over all the region references. Main illustrative function: H5LRcreate_regref_to_all | |||||
* | [svn-r17068] This example shows how to create, store and read data ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+209 | |
| | | | | | | | | | | | | | | | | associated with region references. It creates a file and writes a two dimensional integer dataset to it. Then it creates a region reference to a subset hyperslab region of the data. It then reopens the files, obtains information about the data associated with the region reference, creates an array to store the data, and then reads the hyperslab slab subset of the data and prints it to the screen. Main illustrative functions: H5LRget_region_info, H5LRread_region | |||||
* | [svn-r17067] This example creates a file and writes a two dimensional ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+135 | |
| | | | | | | | | | | | integer dataset to it. It then reopens the dataset and creates two region references to hyperslabs with coordinates (2,5)-(4,6) and (0,0)-(2,1). It then creates a new data set composed of data from the hyperslabs referenced by the newly created region references. The newly created dataset is then read and printed to the screen. | |||||
* | [svn-r17066] This example creates a file and writes a two dimensional ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+169 | |
| | | | | | | | | | | integer dataset to it. Then it creates a region reference to a hyperslab. It then reopens the file, copies data from a dataset (pointed to by a region reference) to a new location and creates a new reference to it. Main illustrative function: H5LRcopy_references | |||||
* | [svn-r17065] This example creates a file and writes a two dimensional ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+109 | |
| | | | | | | | | | | real dataset to it. It then reopens the file and reads a region of data given a set of corner coordinates. Main illustrative function: H5LTread_region | |||||
* | [svn-r17064] This examples creates a file and writes a two dimensional ↵ | Scot Breitenfeld | 2009-06-17 | 1 | -0/+118 | |
| | | | | | | | | | | real dataset to it. It then reopens the file, and copies a region described by blocks to another region described by another block. Main illustrative function: H5LTcopy_region | |||||
* | [svn-r17063] This example shows how to read and write bitfield | Scot Breitenfeld | 2009-06-17 | 1 | -0/+117 | |
| | | | | | | | | | | | datatypes to a dataset. The program first writes bit fields to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, and extracts the bit field using a given starting bit and number of bits in the bit-field. The values are returned as a base-10 integer. Main illustrative function: H5LTread_bitfield_value | |||||
* | [svn-r17061] Description: | Scot Breitenfeld | 2009-06-16 | 2 | -139/+162 | |
| | | | | cleaned-up source | |||||
* | [svn-r17018] Merged changes from the trunk into the branch: | Scot Breitenfeld | 2009-06-09 | 53 | -872/+1735 | |
| | | | | | | svn merge -r16933:17016 https://svn.hdfgroup.uiuc.edu/hdf5/trunk Tested: smirom | |||||
* | [svn-r17016] Code cleaning, clean up H5LRcreate_regref_to_all, needs: | Scot Breitenfeld | 2009-06-08 | 3 | -103/+187 | |
| | | | | passing of data type fails when creating new datatype. | |||||
* | [svn-r17015] Description: | Scot Breitenfeld | 2009-06-08 | 2 | -153/+375 | |
| | | | | Implemented test for H5LRcreate_regref_to_all. | |||||
* | [svn-r17014] Description: | Scot Breitenfeld | 2009-06-08 | 5 | -602/+830 | |
| | | | | | | implemented H5LRcreate_regref_to_all tested: smirom (icc) | |||||
* | [svn-r16981] Description: | Scot Breitenfeld | 2009-05-22 | 2 | -240/+198 | |
| | | | | | | Fixed H5LRmake_dataset, passes tests. All APIs now work and tested. Platforms tested: smirom (icc, gcc) | |||||
* | [svn-r16972] Maintenance: Fixed a typo | Elena Pourmal | 2009-05-21 | 1 | -1/+1 | |
| | ||||||
* | [svn-r16971] Maintenance: Updated MANIFEST before creating a tar ball for NPOESS | Elena Pourmal | 2009-05-21 | 1 | -2/+3 | |
| | ||||||
* | [svn-r16970] Maintenance: Changed the type to be H5T_NATIVE_UCHAR instead of ↵ | Elena Pourmal | 2009-05-21 | 1 | -3/+3 | |
| | | | | | | | | | bitfield to allow h5dump to show packed bits; current h5dump works only with integer types while dsiplaying packed bits. Platforms tested: jam and smirom | |||||
* | [svn-r16968] Added missing byte case packed bits operations. | Allen Byrne | 2009-05-20 | 1 | -2/+10 | |
| | | | | Tested local linux | |||||
* | [svn-r16967] Description: | Scot Breitenfeld | 2009-05-20 | 3 | -168/+218 | |
| | | | | | | Fixed H5LRcopy_region, Fixed double free errors. H5LRmake_dataset is incomplete. Platforms tested: smirom (icc) | |||||
* | [svn-r16963] Description: | Scot Breitenfeld | 2009-05-19 | 7 | -67/+63 | |
| | | | | | | Changed some APIs to match the APIs in the RFC, H5LRcopy_region is not working. Fixed error in H5LT and H5LR error handling. Platform tested: smirom (icc) | |||||
* | [svn-r16962] Code cleanup: indentation and formatting. | Allen Byrne | 2009-05-19 | 4 | -340/+382 | |
| | | | | Tested: local linux | |||||
* | [svn-r16959] Description: | Scot Breitenfeld | 2009-05-19 | 10 | -2910/+3477 | |
| | | | | | | | Merged changes from the trunk into the branch. svn merge -r16933:16958 https://svn.hdfgroup.uiuc.edu/hdf5/trunk Platforms tested: smirom (icc) | |||||
* | [svn-r16958] Added display of dataspace unde datatype within region output ↵ | Allen Byrne | 2009-05-18 | 4 | -12/+138 | |
| | | | | on use of -R option | |||||
* | [svn-r16954] Lifted the restriction that major and minor errors must be in ↵ | Raymond Lu | 2009-05-15 | 1 | -8/+0 | |
| | | | | | | the same class. Tested on jam - simple change. | |||||
* | [svn-r16951] Description: | Scot Breitenfeld | 2009-05-14 | 2 | -55/+376 | |
| | | | | | | | Added new error handling functions to the NPOESS LT functions. Cleaned up LR functions. Platforms tested: Smirom (icc) | |||||
* | [svn-r16949] Description: | Scot Breitenfeld | 2009-05-13 | 7 | -199/+513 | |
| | | | | | | Made changes to the HL error routines and converted the error checking to use the HLerror functions. Platform tested: smirom (icc) | |||||
* | [svn-r16936] Merged changes from the trunk into the branch: | Scot Breitenfeld | 2009-05-11 | 5 | -41/+102 | |
| | | | | | | svn merge -r16869:16933 https://svn.hdfgroup.uiuc.edu/hdf5/trunk Tested: smirom | |||||
* | [svn-r16935] Description: | Scot Breitenfeld | 2009-05-11 | 1 | -0/+3 | |
| | | | | | | Added test for H5LTget_dataset_ndims Tested: smirom | |||||
* | [svn-r16932] Bring changes from the Trunk | Allen Byrne | 2009-05-08 | 5 | -14/+361 | |
| | ||||||
* | [svn-r16931] Corrected misspelling of length. | Allen Byrne | 2009-05-08 | 4 | -16/+16 | |
| | ||||||
* | [svn-r16930] Added new testfiles for packed bits | Allen Byrne | 2009-05-08 | 1 | -0/+2 | |
| | ||||||
* | [svn-r16928] Added MAX value of 8 to packed_bits loop count. | Allen Byrne | 2009-05-08 | 1 | -0/+3 | |
| | ||||||
* | [svn-r16927] Added multiple packed bits loop. | Allen Byrne | 2009-05-08 | 6 | -9/+57 | |
| | ||||||
* | [svn-r16926] Added PACKED_BITS OFFSET=N LENGHT=M to -M option display. Added ↵ | Allen Byrne | 2009-05-07 | 5 | -0/+60 | |
| | | | | test for option. | |||||
* | [svn-r16925] Added option to display a dataset with a bit mask | Allen Byrne | 2009-05-07 | 5 | -76/+169 | |
| | ||||||
* | [svn-r16924] Description: | Scot Breitenfeld | 2009-05-06 | 8 | -209/+459 | |
| | | | | | | Added error handling with throw/catch. Tested: smirom | |||||
* | [svn-r16891] Removed redundant code, restructured it to be cleaner, fixed ↵ | Scot Breitenfeld | 2009-04-29 | 1 | -77/+40 | |
| | | | | returned value for NULL path in H5LRget_region_info. | |||||
* | [svn-r16890] H5dump now correctly breaks on dimension boundaries and matches ↵ | Allen Byrne | 2009-04-29 | 2 | -6/+9 | |
| | | | | the RFC. | |||||
* | [svn-r16889] Improved the h5dump output format for region reference data. ↵ | Allen Byrne | 2009-04-29 | 3 | -43/+26 | |
| | | | | The region data index values are correct and there is no output order dependent line break problem. The region data still needs work to display blocks with dimension breaks. | |||||
* | [svn-r16883] Corrected test file for data region index values. | Allen Byrne | 2009-04-28 | 1 | -11/+11 | |
| | ||||||
* | [svn-r16881] Duplicated prefix code for region data and got index values to ↵ | Allen Byrne | 2009-04-28 | 3 | -23/+336 | |
| | | | | display correctly. | |||||
* | [svn-r16876] Improved the h5dump output format for region reference data. ↵ | Allen Byrne | 2009-04-28 | 3 | -181/+193 | |
| | | | | The region data index values are incorrect and there is an output order dependent line break problem. | |||||
* | [svn-r16875] Merged changes from the trunk into the branch: | Scot Breitenfeld | 2009-04-28 | 319 | -10244/+18199 | |
| | | | | | | svn merge -r16602:16869 https://svn.hdfgroup.uiuc.edu/hdf5/trunk Tested on: smirom | |||||
* | [svn-r16873] Removed debugging statements, tested early adoption of new ↵ | Scot Breitenfeld | 2009-04-28 | 4 | -16/+34 | |
| | | | | error handling. | |||||
* | [svn-r16841] Added missing tdataregR.ddl file needed by h5dump test | Allen Byrne | 2009-04-22 | 2 | -0/+45 | |
| | ||||||
* | [svn-r16832] Corrected output of non region data when used by h5ls. Added ↵ | Allen Byrne | 2009-04-22 | 3 | -109/+220 | |
| | | | | test for _R option in h5dump tests suite. | |||||
* | [svn-r16831] Added the test of allowing an error class to use other class's ↵ | Raymond Lu | 2009-04-22 | 2 | -13/+31 | |
| | | | | | | | major or minor errors. Tested on jam - simple changes. | |||||
* | [svn-r16824] Added some comment for previous checkin. | Raymond Lu | 2009-04-21 | 1 | -1/+2 | |
| | | | | Tested on jam - simple change. |