summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [svn-r17072] Description:Scot Breitenfeld2009-06-171-67/+47
| | | | Added additional tests for H5LRcreate_regref_to_all, cleaned up code.
* [svn-r17071] Added hl examples for region references and hyperslabs.Scot Breitenfeld2009-06-171-0/+7
|
* [svn-r17070] Description:Scot Breitenfeld2009-06-172-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 Breitenfeld2009-06-171-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 Breitenfeld2009-06-171-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 Breitenfeld2009-06-171-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 Breitenfeld2009-06-171-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 Breitenfeld2009-06-171-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 Breitenfeld2009-06-171-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 bitfieldScot Breitenfeld2009-06-171-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 Breitenfeld2009-06-162-139/+162
| | | | cleaned-up source
* [svn-r17018] Merged changes from the trunk into the branch:Scot Breitenfeld2009-06-0953-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 Breitenfeld2009-06-083-103/+187
| | | | passing of data type fails when creating new datatype.
* [svn-r17015] Description:Scot Breitenfeld2009-06-082-153/+375
| | | | Implemented test for H5LRcreate_regref_to_all.
* [svn-r17014] Description:Scot Breitenfeld2009-06-085-602/+830
| | | | | | implemented H5LRcreate_regref_to_all tested: smirom (icc)
* [svn-r16981] Description:Scot Breitenfeld2009-05-222-240/+198
| | | | | | Fixed H5LRmake_dataset, passes tests. All APIs now work and tested. Platforms tested: smirom (icc, gcc)
* [svn-r16972] Maintenance: Fixed a typoElena Pourmal2009-05-211-1/+1
|
* [svn-r16971] Maintenance: Updated MANIFEST before creating a tar ball for NPOESSElena Pourmal2009-05-211-2/+3
|
* [svn-r16970] Maintenance: Changed the type to be H5T_NATIVE_UCHAR instead of ↵Elena Pourmal2009-05-211-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 Byrne2009-05-201-2/+10
| | | | Tested local linux
* [svn-r16967] Description:Scot Breitenfeld2009-05-203-168/+218
| | | | | | Fixed H5LRcopy_region, Fixed double free errors. H5LRmake_dataset is incomplete. Platforms tested: smirom (icc)
* [svn-r16963] Description:Scot Breitenfeld2009-05-197-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 Byrne2009-05-194-340/+382
| | | | Tested: local linux
* [svn-r16959] Description:Scot Breitenfeld2009-05-1910-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 Byrne2009-05-184-12/+138
| | | | on use of -R option
* [svn-r16954] Lifted the restriction that major and minor errors must be in ↵Raymond Lu2009-05-151-8/+0
| | | | | | the same class. Tested on jam - simple change.
* [svn-r16951] Description:Scot Breitenfeld2009-05-142-55/+376
| | | | | | | Added new error handling functions to the NPOESS LT functions. Cleaned up LR functions. Platforms tested: Smirom (icc)
* [svn-r16949] Description:Scot Breitenfeld2009-05-137-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 Breitenfeld2009-05-115-41/+102
| | | | | | svn merge -r16869:16933 https://svn.hdfgroup.uiuc.edu/hdf5/trunk Tested: smirom
* [svn-r16935] Description:Scot Breitenfeld2009-05-111-0/+3
| | | | | | Added test for H5LTget_dataset_ndims Tested: smirom
* [svn-r16932] Bring changes from the TrunkAllen Byrne2009-05-085-14/+361
|
* [svn-r16931] Corrected misspelling of length.Allen Byrne2009-05-084-16/+16
|
* [svn-r16930] Added new testfiles for packed bitsAllen Byrne2009-05-081-0/+2
|
* [svn-r16928] Added MAX value of 8 to packed_bits loop count.Allen Byrne2009-05-081-0/+3
|
* [svn-r16927] Added multiple packed bits loop.Allen Byrne2009-05-086-9/+57
|
* [svn-r16926] Added PACKED_BITS OFFSET=N LENGHT=M to -M option display. Added ↵Allen Byrne2009-05-075-0/+60
| | | | test for option.
* [svn-r16925] Added option to display a dataset with a bit maskAllen Byrne2009-05-075-76/+169
|
* [svn-r16924] Description:Scot Breitenfeld2009-05-068-209/+459
| | | | | | Added error handling with throw/catch. Tested: smirom
* [svn-r16891] Removed redundant code, restructured it to be cleaner, fixed ↵Scot Breitenfeld2009-04-291-77/+40
| | | | returned value for NULL path in H5LRget_region_info.
* [svn-r16890] H5dump now correctly breaks on dimension boundaries and matches ↵Allen Byrne2009-04-292-6/+9
| | | | the RFC.
* [svn-r16889] Improved the h5dump output format for region reference data. ↵Allen Byrne2009-04-293-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 Byrne2009-04-281-11/+11
|
* [svn-r16881] Duplicated prefix code for region data and got index values to ↵Allen Byrne2009-04-283-23/+336
| | | | display correctly.
* [svn-r16876] Improved the h5dump output format for region reference data. ↵Allen Byrne2009-04-283-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 Breitenfeld2009-04-28319-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 Breitenfeld2009-04-284-16/+34
| | | | error handling.
* [svn-r16841] Added missing tdataregR.ddl file needed by h5dump testAllen Byrne2009-04-222-0/+45
|
* [svn-r16832] Corrected output of non region data when used by h5ls. Added ↵Allen Byrne2009-04-223-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 Lu2009-04-222-13/+31
| | | | | | | major or minor errors. Tested on jam - simple changes.
* [svn-r16824] Added some comment for previous checkin. Raymond Lu2009-04-211-1/+2
| | | | Tested on jam - simple change.