mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Filter plugins updates for registration URL (#4180)
* Update filter plugin URL to new location * Adjust test array size
This commit is contained in:
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 7; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 3; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 1; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -45,7 +45,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[3] = {NUM_IMAGES, DIM0, DIM1}, chunk[3] = {CHUNK0, CHUNK1, CHUNK2};
|
||||
size_t nelmts = 4; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 1; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 3; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 8; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -42,7 +42,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[2] = {DIM0, DIM1}, chunk[2] = {CHUNK0, CHUNK1};
|
||||
size_t nelmts = 3; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -44,7 +44,7 @@ main(void)
|
||||
herr_t status;
|
||||
htri_t avail;
|
||||
H5Z_filter_t filter_id = 0;
|
||||
char filter_name[80];
|
||||
char filter_name[128];
|
||||
hsize_t dims[3] = {NUM_IMAGES, DIM0, DIM1}, chunk[3] = {CHUNK0, CHUNK1, CHUNK2};
|
||||
size_t nelmts = 1; /* number of elements in cd_values */
|
||||
unsigned int flags;
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 32001
|
||||
COMMENT HDF5 blosc filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 blosc filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 2 2 4 128 4 1 2 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ blosc filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 32001
|
||||
Number of parameters is 7 with the value 4 1 2
|
||||
To find more about the filter check HDF5 blosc filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 blosc filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading blosc compressed data ................
|
||||
Maximum value in DS1 is 1890
|
||||
blosc filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 307
|
||||
COMMENT HDF5 bzip2 filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 bzip2 filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 2 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ bzip2 filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 307
|
||||
Number of parameters is 1 with the value 2
|
||||
To find more about the filter check HDF5 bzip2 filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 bzip2 filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading bzip2 compressed data ................
|
||||
Maximum value in DS1 is 1890
|
||||
bzip2 filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 32019
|
||||
COMMENT HDF5 jpeg filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 jpeg filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 100 1024 512 0 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ jpeg filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 32019
|
||||
Number of parameters is 4 with the value 100
|
||||
To find more about the filter check HDF5 jpeg filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 jpeg filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading jpeg compressed data ................
|
||||
JPEG quality=100, percent of differing array elements=0.000000
|
||||
jpeg filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 32004
|
||||
COMMENT HDF5 lz4 filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 lz4 filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 3 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ lz4 filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 32004
|
||||
Number of parameters is 1 with the value 3
|
||||
To find more about the filter check HDF5 lz4 filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 lz4 filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading lz4 compressed data ................
|
||||
Maximum value in DS1 is 1890
|
||||
lz4 filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 32000
|
||||
COMMENT HDF5 lzf filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 lzf filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 4 261 128 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ lzf filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 32000
|
||||
Number of parameters is 3 with the value 4
|
||||
To find more about the filter check HDF5 lzf filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 lzf filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading lzf compressed data ................
|
||||
Maximum value in DS1 is 1890
|
||||
lzf filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
@@ -10,7 +10,7 @@ GROUP "/" {
|
||||
FILTERS {
|
||||
USER_DEFINED_FILTER {
|
||||
FILTER_ID 32015
|
||||
COMMENT HDF5 zstd filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
COMMENT HDF5 zstd filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
PARAMS { 0 }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ zstd filter is available for encoding and decoding.
|
||||
Filter info is available from the dataset creation property
|
||||
Filter identifier is 32015
|
||||
Number of parameters is 1 with the value 0
|
||||
To find more about the filter check HDF5 zstd filter; see http://www.hdfgroup.org/services/contributions.html
|
||||
To find more about the filter check HDF5 zstd filter; see https://github.com/HDFGroup/hdf5_plugins/blob/master/docs/RegisteredFilterPlugins.md
|
||||
....Reading zstd compressed data ................
|
||||
ZSTD number of differing array elements=0
|
||||
zstd filter is available now since H5Dread triggered loading of the filter.
|
||||
|
||||
Reference in New Issue
Block a user