source: thirdparty/SZ/sz/include/szd_float_pwr.h @ 9ee2ce3

Revision 9ee2ce3, 1.5 KB checked in by Hal Finkel <hfinkel@…>, 6 years ago (diff)

importing new SZ files

  • Property mode set to 100644
Line 
1/**
2 *  @file szd_float_pwr.h
3 *  @author Sheng Di
4 *  @date July, 2017
5 *  @brief Header file for the szd_float_pwr.c.
6 *  (C) 2016 by Mathematics and Computer Science (MCS), Argonne National Laboratory.
7 *      See COPYRIGHT in top-level directory.
8 */
9
10#ifndef _SZD_Float_PWR_H
11#define _SZD_Float_PWR_H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17void decompressDataSeries_float_1D_pwr(float** data, size_t dataSeriesLength, TightDataPointStorageF* tdps);
18float* extractRealPrecision_2D_float(size_t R1, size_t R2, int blockSize, TightDataPointStorageF* tdps);
19void decompressDataSeries_float_2D_pwr(float** data, size_t r1, size_t r2, TightDataPointStorageF* tdps);
20float* extractRealPrecision_3D_float(size_t R1, size_t R2, size_t R3, int blockSize, TightDataPointStorageF* tdps);
21void decompressDataSeries_float_3D_pwr(float** data, size_t r1, size_t r2, size_t r3, TightDataPointStorageF* tdps);
22
23char* decompressGroupIDArray(unsigned char* bytes, size_t dataLength);
24void decompressDataSeries_float_1D_pwrgroup(float** data, size_t dataSeriesLength, TightDataPointStorageF* tdps);
25void decompressDataSeries_float_1D_pwr_pre_log(float** data, size_t dataSeriesLength, TightDataPointStorageF* tdps);
26void decompressDataSeries_float_2D_pwr_pre_log(float** data, size_t r1, size_t r2, TightDataPointStorageF* tdps);
27void decompressDataSeries_float_3D_pwr_pre_log(float** data, size_t r1, size_t r2, size_t r3, TightDataPointStorageF* tdps);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif /* ----- #ifndef _SZD_Float_PWR_H  ----- */
34
Note: See TracBrowser for help on using the repository browser.