4376fde720afa19ed5b338c194a7edc8db812893
[libcds.git] / test / stress / sequential / sequential-set / del3 / set_del3.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_del3.h"
32 #include <string>
33
34 namespace set {
35
36     size_t  Set_Del3::s_nSetSize = 1000000;
37     size_t  Set_Del3::s_nInsThreadCount = 4;
38     size_t  Set_Del3::s_nDelThreadCount = 4;
39     size_t  Set_Del3::s_nExtractThreadCount = 4;
40     size_t  Set_Del3::s_nFindThreadCount = 2;
41     size_t  Set_Del3::s_nMaxLoadFactor = 8;
42     size_t  Set_Del3::s_nPassCount = 100;
43     size_t  Set_Del3::s_nFeldmanPassCount = 100;
44     size_t  Set_Del3::s_nInsertPassCount = 1;
45     size_t  Set_Del3::s_nDeletePassCount = 1;
46     size_t  Set_Del3::s_nFindPassCount = 10;
47
48     size_t  Set_Del3::s_nCuckooInitialSize = 1024;
49     size_t  Set_Del3::s_nCuckooProbesetSize = 16;
50     size_t  Set_Del3::s_nCuckooProbesetThreshold = 0;
51
52     size_t Set_Del3::s_nFeldmanSet_HeadBits = 10;
53     size_t Set_Del3::s_nFeldmanSet_ArrayBits = 4;
54
55
56     size_t Set_Del3::s_nLoadFactor = 1;
57     std::vector<size_t> Set_Del3::m_arrData;
58
59     void Set_Del3::SetUpTestCase()
60     {
61         cds_test::config const& cfg = get_config( "sequential_map_delodd" );
62
63         s_nSetSize = cfg.get_size_t( "MapSize", s_nSetSize );
64         if ( s_nSetSize < 1000 )
65             s_nSetSize = 1000;
66
67         s_nInsThreadCount = cfg.get_size_t( "InsThreadCount", s_nInsThreadCount );
68         if ( s_nInsThreadCount == 0 )
69             s_nInsThreadCount = 1;
70
71         s_nDelThreadCount = cfg.get_size_t( "DelThreadCount", s_nDelThreadCount );
72         s_nExtractThreadCount = cfg.get_size_t( "ExtractThreadCount", s_nExtractThreadCount );
73         s_nFindThreadCount = cfg.get_size_t( "FindThreadCount", s_nFindThreadCount );
74
75         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
76         if ( s_nMaxLoadFactor == 0 )
77             s_nMaxLoadFactor = 1;
78
79         s_nPassCount = cfg.get_size_t("PassCount", s_nPassCount);
80         if (s_nPassCount == 0)
81           s_nPassCount = 100;
82
83         s_nFeldmanPassCount =
84             cfg.get_size_t("FeldmanPassCount", s_nFeldmanPassCount);
85         if (s_nFeldmanPassCount == 0)
86           s_nFeldmanPassCount = 500;
87
88         s_nInsertPassCount = cfg.get_size_t( "InsertPassCount", s_nInsertPassCount );
89         if ( s_nInsertPassCount == 0 )
90             s_nInsertPassCount = 1;
91
92         s_nDeletePassCount = cfg.get_size_t( "DeletePassCount", s_nDeletePassCount );
93         if ( s_nDeletePassCount == 0 )
94             s_nDeletePassCount = 1;
95
96         s_nFindPassCount = cfg.get_size_t( "FindPassCount", s_nFindPassCount );
97         if ( s_nFindPassCount == 0 )
98             s_nFindPassCount = 10;
99
100
101         s_nCuckooInitialSize = cfg.get_size_t( "CuckooInitialSize", s_nCuckooInitialSize );
102         if ( s_nCuckooInitialSize < 256 )
103             s_nCuckooInitialSize = 256;
104
105         s_nCuckooProbesetSize = cfg.get_size_t( "CuckooProbesetSize", s_nCuckooProbesetSize );
106         if ( s_nCuckooProbesetSize < 8 )
107             s_nCuckooProbesetSize = 8;
108
109         s_nCuckooProbesetThreshold = cfg.get_size_t( "CuckooProbesetThreshold", s_nCuckooProbesetThreshold );
110
111         s_nFeldmanSet_HeadBits = cfg.get_size_t( "FeldmanMapHeadBits", s_nFeldmanSet_HeadBits );
112         if ( s_nFeldmanSet_HeadBits == 0 )
113             s_nFeldmanSet_HeadBits = 2;
114
115         s_nFeldmanSet_ArrayBits = cfg.get_size_t( "FeldmanMapArrayBits", s_nFeldmanSet_ArrayBits );
116         if ( s_nFeldmanSet_ArrayBits == 0 )
117             s_nFeldmanSet_ArrayBits = 2;
118
119         m_arrData.resize( s_nSetSize );
120         for ( size_t i = 0; i < s_nSetSize; ++i )
121             m_arrData[i] = i;
122         shuffle( m_arrData.begin(), m_arrData.end());
123     }
124
125     void Set_Del3::TearDownTestCase()
126     {
127         m_arrData.clear();
128     }
129
130     std::vector<size_t> Set_Del3_LF::get_load_factors()
131     {
132         cds_test::config const& cfg = get_config( "map_delodd" );
133
134         s_nMaxLoadFactor = cfg.get_size_t( "MaxLoadFactor", s_nMaxLoadFactor );
135         if ( s_nMaxLoadFactor == 0 )
136             s_nMaxLoadFactor = 1;
137
138         std::vector<size_t> lf;
139         for ( size_t n = 1; n <= s_nMaxLoadFactor; n *= 2 )
140             lf.push_back( n );
141
142         return lf;
143     }
144
145 #ifdef CDSTEST_GTEST_INSTANTIATE_TEST_CASE_P_HAS_4TH_ARG
146     static std::string get_test_parameter_name( testing::TestParamInfo<size_t> const& p )
147     {
148         return std::to_string( p.param );
149     }
150     INSTANTIATE_TEST_CASE_P( a, Set_Del3_LF, ::testing::ValuesIn( Set_Del3_LF::get_load_factors()), get_test_parameter_name );
151 #else
152     INSTANTIATE_TEST_CASE_P( a, Set_Del3_LF, ::testing::ValuesIn( Set_Del3_LF::get_load_factors()));
153 #endif
154
155 } // namespace set