Welcome to mirror list, hosted at ThFree Co, Russian Federation.

probing_hash_utils.hh « ProbingPT « TranslationModel « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcf0dbe25d5cd986e7df4773ae3b12aa81a1166b (plain)
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
#pragma once

#include "util/probing_hash_table.hh"

#include <sys/mman.h>
#include <boost/functional/hash.hpp>
#include <fcntl.h>
#include <fstream>

namespace Moses
{

#define API_VERSION 15

//Hash table entry
struct Entry
{
  typedef uint64_t Key;
  Key key;

  Key GetKey() const
  {
    return key;
  }

  void SetKey(Key to)
  {
    key = to;
  }

  uint64_t value;
};

#define NONE       std::numeric_limits<uint64_t>::max()

//Define table
typedef util::ProbingHashTable<Entry, boost::hash<uint64_t> > Table;

void serialize_table(char *mem, size_t size, const std::string &filename);

char * readTable(const char * filename, size_t size);

uint64_t getKey(const uint64_t source_phrase[], size_t size);

struct TargetPhraseInfo
{
  uint32_t alignTerm;
  uint32_t alignNonTerm;
  uint16_t numWords;
  uint16_t propLength;
  uint16_t filler;
};

}