aboutsummaryrefslogtreecommitdiffstats
path: root/fsa/src/alltest/fsa_perftest.cpp
blob: 0caf1d6013cfa0198bce709b6f89e667306cf336 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <stdlib.h>
#include <iostream>
#include <iomanip>
#include <string>

#include <vespa/fsa/fsa.h>
#include <vespa/fsa/timestamp.h>

using namespace fsa;

int main(int, char**)
{
  FSA                    f("__testfsa__.__fsa__");
  FSA::State             s(f);
  FSA::HashedState       hs(f);
  FSA::MemoryState       ms(f);
  FSA::HashedMemoryState hms(f);
  FSA::CounterState      cs(f);
  std::string input("cucumber");
  unsigned int count=10000000,i;

  std::cout << "Number of lookups: " << count << std::endl;
  std::cout << "Input string length: " << input.length() << std::endl;
  std::cout << std::endl;

  TimeStamp t;
  double t0,t1;

  t0=t.elapsed();
  for(i=0;i<count;i++){
    s.start();
    s.lookup(input);
  }
  t1=t.elapsed()-t0;
  std::cout << "State:              " << t1*1000 << " ms" << "\t"
            << (unsigned int)(count*input.length()/t1) << " delta/sec" << std::endl;

  t0=t.elapsed();
  for(i=0;i<count;i++){
    hs.start();
    hs.lookup(input);
  }
  t1=t.elapsed()-t0;
  std::cout << "HashedState:        " << t1*1000 << " ms"<< "\t"
            << (unsigned int)(count*input.length()/t1) << " delta/sec" << std::endl;

  t0=t.elapsed();
  for(i=0;i<count;i++){
    ms.start();
    ms.lookup(input);
  }
  t1=t.elapsed()-t0;
  std::cout << "MemoryState:        " << t1*1000 << " ms"<< "\t"
            << (unsigned int)(count*input.length()/t1) << " delta/sec" << std::endl;

  t0=t.elapsed();
  for(i=0;i<count;i++){
    hms.start();
    hms.lookup(input);
  }
  t1=t.elapsed()-t0;
  std::cout << "HashedMemoryState:  " << t1*1000 << " ms"<< "\t"
            << (unsigned int)(count*input.length()/t1) << " delta/sec" << std::endl;

  t0=t.elapsed();
  for(i=0;i<count;i++){
    cs.start();
    cs.lookup(input);
  }
  t1=t.elapsed()-t0;
  std::cout << "CounterState:       " << t1*1000 << " ms"<< "\t"
            << (unsigned int)(count*input.length()/t1) << " delta/sec" << std::endl;

  return 0;
}