0835a4729488cbb75894728d9e7972156fd77eb4
[libcds.git] / test / stress / set / delodd / set_delodd.cpp
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 #include "set_delodd.h"
32
33 namespace set {
34
35     size_t  Set_DelOdd::s_nSetSize = 1000000;
36     size_t  Set_DelOdd::s_nInsThreadCount = 4;
37     size_t  Set_DelOdd::s_nDelThreadCount = 4;
38     size_t  Set_DelOdd::s_nExtractThreadCount = 4;
39     size_t  Set_DelOdd::s_nFindThreadCount = 2;
40     size_t  Set_DelOdd::s_nMaxLoadFactor = 8;
41     size_t  Set_DelOdd::s_nInsertPassCount = 100;
42
43     size_t  Set_DelOdd::s_nCuckooInitialSize = 1024;
44     size_t  Set_DelOdd::s_nCuckooProbesetSize = 16;
45     size_t  Set_DelOdd::s_nCuckooProbesetThreshold = 0;
46
47     size_t Set_DelOdd::s_nFeldmanSet_HeadBits = 10;
48     size_t Set_DelOdd::s_nFeldmanSet_ArrayBits = 4;
49
50
51     size_t Set_DelOdd::s_nLoadFactor = 1;
52     std::vector<size_t> Set_DelOdd::m_arrData;
53
54     void Set_DelOdd::SetUpTestCase()
55     {
56         cds_test::config const& cfg = get_config( "map_delodd" );
57
58         s_nSetSize = cfg.get_size_t( "MapSize", s_nSetSize );
59         if ( s_nSetSize < 1000 )
60             s_nSetSize = 1000;
61
62         s_nInsThreadCount = cfg.get_size_t( "InsThreadCount", s_nInsThreadCount );
63         if ( s_nInsThreadCount == 0 )
64             s_nInsThreadCount = 1;
65
66         s_nDelThreadCount = cfg.get_size_t( "DelThreadCount", s_nDelThreadCount );
67         s_nExtractThreadCount = cfg.get_size_t( "ExtractThreadCount", s_nExtractThreadCount );
68         s_nFindThreadCount = cfg.get_size_t( "FindThreadCount", s_nFindThreadCount );
69
70         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
71         if ( s_nMaxLoadFactor == 0 )
72             s_nMaxLoadFactor = 1;
73
74         s_nInsertPassCount = cfg.get_size_t( "PassCount", s_nInsertPassCount );
75         if ( s_nInsertPassCount == 0 )
76             s_nInsertPassCount = 100;
77
78         s_nCuckooInitialSize = cfg.get_size_t( "CuckooInitialSize", s_nCuckooInitialSize );
79         if ( s_nCuckooInitialSize < 256 )
80             s_nCuckooInitialSize = 256;
81
82         s_nCuckooProbesetSize = cfg.get_size_t( "CuckooProbesetSize", s_nCuckooProbesetSize );
83         if ( s_nCuckooProbesetSize < 8 )
84             s_nCuckooProbesetSize = 8;
85
86         s_nCuckooProbesetThreshold = cfg.get_size_t( "CuckooProbesetThreshold", s_nCuckooProbesetThreshold );
87
88         s_nFeldmanSet_HeadBits = cfg.get_size_t( "FeldmanMapHeadBits", s_nFeldmanSet_HeadBits );
89         if ( s_nFeldmanSet_HeadBits == 0 )
90             s_nFeldmanSet_HeadBits = 2;
91
92         s_nFeldmanSet_ArrayBits = cfg.get_size_t( "FeldmanMapArrayBits", s_nFeldmanSet_ArrayBits );
93         if ( s_nFeldmanSet_ArrayBits == 0 )
94             s_nFeldmanSet_ArrayBits = 2;
95
96         m_arrData.resize( s_nSetSize );
97         for ( size_t i = 0; i < s_nSetSize; ++i )
98             m_arrData[i] = i;
99         shuffle( m_arrData.begin(), m_arrData.end());
100     }
101
102     void Set_DelOdd::TearDownTestCase()
103     {
104         m_arrData.clear();
105     }
106
107     std::vector<size_t> Set_DelOdd_LF::get_load_factors()
108     {
109         cds_test::config const& cfg = get_config( "map_delodd" );
110
111         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
112         if ( s_nMaxLoadFactor == 0 )
113             s_nMaxLoadFactor = 1;
114
115         std::vector<size_t> lf;
116         for ( size_t n = 1; n <= s_nMaxLoadFactor; n *= 2 )
117             lf.push_back( n );
118
119         return lf;
120     }
121
122 #ifdef CDSTEST_GTEST_INSTANTIATE_TEST_CASE_P_HAS_4TH_ARG
123     static std::string get_test_parameter_name( testing::TestParamInfo<size_t> const& p )
124     {
125         return std::to_string( p.param );
126     }
127     INSTANTIATE_TEST_CASE_P( a, Set_DelOdd_LF, ::testing::ValuesIn( Set_DelOdd_LF::get_load_factors()), get_test_parameter_name );
128 #else
129     INSTANTIATE_TEST_CASE_P( a, Set_DelOdd_LF, ::testing::ValuesIn( Set_DelOdd_LF::get_load_factors()) );
130 #endif
131 } // namespace set