libstdc++: Remove std::__is_pointer and std::__is_scalar [PR115497]
[official-gcc.git] / libstdc++-v3 / testsuite / performance / 23_containers / insert / unordered_map_array.cc
blob77b63487105a8d77ea01aaf010ac3efa64d55e15
1 // Copyright (C) 2006-2024 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
19 #include <tr1/unordered_map>
20 #include <testsuite_performance.h>
22 typedef std::tr1::unordered_map<int, int> map_type;
23 typedef std::tr1::unordered_map<int, map_type> matrix_type;
25 int main()
27 using namespace __gnu_test;
29 time_counter time;
30 resource_counter resource;
32 const int sz = 1000;
34 matrix_type matrix;
36 start_counters(time, resource);
37 for (int iter = 0; iter < 50; ++iter)
39 for (int i = 0; i < sz; ++i)
41 for (int j = 0; j < sz; ++j)
43 map_type& row = matrix[i / 4];
44 ++row[j / 4];
48 stop_counters(time, resource);
49 report_performance(__FILE__, "", time, resource);
51 return 0;