summaryrefslogtreecommitdiff
path: root/klm/lm/builder/hash_gamma.hh
blob: 4bef47e819f62be4f311a945fa80521f4c61d980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef LM_BUILDER_HASH_GAMMA__
#define LM_BUILDER_HASH_GAMMA__

#include <stdint.h>

namespace lm { namespace builder {

#pragma pack(push)
#pragma pack(4)

struct HashGamma {
    uint64_t hash_value;
    float gamma;
};

#pragma pack(pop)

}} // namespaces
#endif // LM_BUILDER_HASH_GAMMA__