-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathframe_big.c
103 lines (82 loc) · 3.01 KB
/
frame_big.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
Copyright (c) 2021 Blosc Development Team <[email protected]>
https://blosc.org
License: BSD 3-Clause (see LICENSE.txt)
Example program demonstrating frames going bigger than 2 GB.
To compile this program:
$ gcc -O frame_big.c -o frame_big -lblosc2
To run:
$ ./frame_big
Blosc version info: 2.0.0-beta.4.dev ($Date:: 2019-09-02 #$)
Compression ratio: 4577.6 MB -> 169.8 MB (27.0x)
Time for append data to a schunk backed by a fileframe: 2.61 s, 1750.8 MB/s
Successful roundtrip data <-> schunk (frame-backed) !
*/
#include <stdio.h>
#include <assert.h>
#include <blosc2.h>
#define KB 1024.
#define MB (1024*KB)
#define GB (1024*MB)
#define CHUNKSIZE (1000 * 1000)
#define NCHUNKS 1200 // > 4 GB int32 frame
#define NTHREADS 4
int main(void) {
blosc2_init();
static int32_t data[CHUNKSIZE];
static int32_t data_dest[CHUNKSIZE];
int32_t isize = CHUNKSIZE * sizeof(int32_t);
blosc_timestamp_t last, current;
printf("Blosc version info: %s (%s)\n",
BLOSC2_VERSION_STRING, BLOSC2_VERSION_DATE);
// Compression and decompression parameters
blosc2_cparams cparams = BLOSC2_CPARAMS_DEFAULTS;
cparams.typesize = sizeof(int32_t);
cparams.clevel = 9;
cparams.nthreads = NTHREADS;
blosc2_dparams dparams = BLOSC2_DPARAMS_DEFAULTS;
dparams.nthreads = NTHREADS;
/* Create a new super-chunk backed by a fileframe */
char* urlpath = "frame_big.b2frame";
blosc2_storage storage = {.contiguous=true, .urlpath=urlpath,
.cparams=&cparams, .dparams=&dparams};
remove(urlpath);
blosc2_schunk* schunk = blosc2_schunk_new(&storage);
blosc_set_timestamp(&last);
for (int nchunk = 0; nchunk < NCHUNKS; nchunk++) {
for (int i = 0; i < CHUNKSIZE; i++) {
data[i] = i * nchunk;
}
int64_t nchunks = blosc2_schunk_append_buffer(schunk, data, isize);
if (nchunks != nchunk + 1) {
printf("Error: nchunks is not correct");
return -1;
}
}
/* Gather some info */
int64_t nbytes = schunk->nbytes;
int64_t cbytes = schunk->cbytes;
blosc_set_timestamp(¤t);
double ttotal = blosc_elapsed_secs(last, current);
printf("Compression ratio: %.1f MB -> %.1f MB (%.1fx)\n",
(double)nbytes / MB, (double)cbytes / MB, (1. * (double)nbytes) / (double)cbytes);
printf("Time for append data to a schunk backed by a fileframe: %.3g s, %.1f MB/s\n",
ttotal, (double)nbytes / (ttotal * MB));
/* Retrieve and decompress the chunks from the super-chunks and compare values */
for (int nchunk = 0; nchunk < NCHUNKS; nchunk++) {
int32_t dsize = blosc2_schunk_decompress_chunk(schunk, nchunk, data_dest, isize);
if (dsize < 0) {
printf("Decompression error in schunk. Error code: %d\n", dsize);
return dsize;
}
/* Check integrity of the last chunk */
for (int i = 0; i < CHUNKSIZE; i++) {
assert (data_dest[i] == i * nchunk);
}
}
printf("Successful roundtrip data <-> schunk (frame-backed) !\n");
/* Free resources */
blosc2_schunk_free(schunk);
blosc2_destroy();
return 0;
}