OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [libstdc++-v3/] [testsuite/] [performance/] [ext/] [pb_ds/] [priority_queue_text_pop_mem_usage.cc] - Blame information for rev 611

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// -*- C++ -*-
2
 
3
// Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
4
//
5
// This file is part of the GNU ISO C++ Library.  This library is free
6
// software; you can redistribute it and/or modify it under the terms
7
// of the GNU General Public License as published by the Free Software
8
// Foundation; either version 3, or (at your option) any later
9
// version.
10
 
11
// This library is distributed in the hope that it will be useful, but
12
// WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
// General Public License for more details.
15
 
16
// You should have received a copy of the GNU General Public License
17
// along with this library; see the file COPYING3.  If not see
18
// <http://www.gnu.org/licenses/>.
19
 
20
 
21
// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
22
 
23
// Permission to use, copy, modify, sell, and distribute this software
24
// is hereby granted without fee, provided that the above copyright
25
// notice appears in all copies, and that both that copyright notice
26
// and this permission notice appear in supporting documentation. None
27
// of the above authors, nor IBM Haifa Research Laboratories, make any
28
// representation about the suitability of this software for any
29
// purpose. It is provided "as is" without express or implied
30
// warranty.
31
 
32
/**
33
 * @file priority_queue_text_push_pop_timing_test.cpp
34
 * Contains test for finding text.
35
 */
36
 
37
#include <iostream>
38
#include <vector>
39
#include <ext/typelist.h>
40
#include <testsuite_allocator.h>
41
#include <performance/io/xml_formatter.hpp>
42
#include <io/verified_cmd_line_input.hpp>
43
#include <common_type/priority_queue/common_type.hpp>
44
#include <performance/priority_queue/mem_usage/pop_test.hpp>
45
#include <io/text_populate.hpp>
46
#include <native_type/native_priority_queue.hpp>
47
 
48
void
49
usage();
50
 
51
int
52
main(int argc, char* a_p_argv[])
53
{
54
  using namespace __gnu_pbds::test;
55
  std::string f_name = "thirty_years_among_the_dead_preproc.txt";
56
 
57
  size_t vn = 200;
58
  size_t vs = 200;
59
  size_t vm = 2100;
60
  try
61
    {
62
      xml_test_performance_formatter fmt("Size", "Memory (bytes)");
63
      typedef __gnu_test::tracker_allocator<char> callocator_type;
64
      typedef __gnu_test::tracker_allocator<char> sallocator_type;
65
      typedef std::basic_string<char, std::char_traits<char>, callocator_type> string_t;
66
 
67
      typedef std::vector<std::pair<string_t, char> > vec_t;
68
      vec_t a_v(vm);
69
      text_populate(f_name, a_v);
70
 
71
      typedef pop_test<vec_t::const_iterator> test_t;
72
      vec_t::const_iterator b = a_v.begin();
73
      test_t tst(b, vn, vs, vm);
74
      {
75
        typedef pq_common_types<string_t, std::less<string_t>, callocator_type>::performance_tl pq_tl_t;
76
        pq_tl_t tl;
77
        __gnu_cxx::typelist::apply(tst, tl);
78
      }
79
 
80
      {
81
        typedef native_priority_queue<string_t, true, std::less<string_t>, sallocator_type> native_pq_t;
82
        tst(native_pq_t());
83
      }
84
 
85
      {
86
        typedef native_priority_queue<string_t, false, std::less<string_t>, sallocator_type> native_pq_t;
87
        tst(native_pq_t());
88
      }
89
    }
90
  catch (...)
91
    {
92
      std::cerr << "Test failed" << std::endl;
93
      return -1;
94
    }
95
  return 0;
96
}
97
 
98
void
99
usage()
100
{
101
  using namespace std;
102
  cerr << "usage: priority_queue_text_pop_mem_usage_test <f_name> <vn> <vs> <vm>" <<
103
    endl << endl;
104
 
105
  cerr <<
106
    "This test checks the performance of various priority_queueiative containers "
107
    "using their push method. " << endl;
108
  cerr << "Specifically, it does the following:" << endl;
109
  cerr << "*  Creates a vector of text words " << endl;
110
  cerr << "*  Pushes the elements into the container, then pops until it's empty." << endl;
111
 
112
  cerr << endl << endl;
113
 
114
  cerr << "f_name = file name containing the text words. "
115
    "Each line should contain one word." << endl;
116
  cerr << "vn = minimum size of the vector" << endl;
117
  cerr << "vs = step size of the vector" << endl;
118
  cerr << "vm = maximum size of the vector" << endl;
119
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.