Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

up chunk sizes #62

Merged
merged 3 commits into from
May 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/libkea/KEACommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ namespace kealib{
static const hsize_t KEA_SIEVE_BUF( 65536 ); // 65536
static const hsize_t KEA_META_BLOCKSIZE( 2048 ); // 2048
static const unsigned int KEA_DEFLATE( 1 ); // 1
static const hsize_t KEA_IMAGE_CHUNK_SIZE( 256 ); // 256
static const hsize_t KEA_ATT_CHUNK_SIZE( 1000 ); // 1000
static const hsize_t KEA_IMAGE_CHUNK_SIZE( 512 ); // 512
static const hsize_t KEA_ATT_CHUNK_SIZE( 10000 ); // 10000

enum KEADataType
{
Expand Down
Loading