/* Copyright (c) 2005-2021 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include #include #include //! \file test_concurrent_queue.cpp //! \brief Test for [containers.concurrent_queue containers.concurrent_bounded_queue] specification static constexpr std::size_t MaxThread = 4; template struct TestQueueElements { CQ& queue; const std::size_t nthread; TestQueueElements( CQ& q, std::size_t n ) : queue(q), nthread(n) {} void operator()( std::size_t k ) const { for (std::size_t i=0; i < 1000; ++i) { if( (i&0x1)==0 ) { CHECK(T(k) < T(nthread)); queue.push(T(k)); } else { // Pop item from queue T item = 0; queue.try_pop(item); CHECK(item <= T(nthread)); } } } }; //! Test concurrent queue with primitive data type template void TestPrimitiveTypes(std::size_t nthread, T exemplar) { CQ queue; for (std::size_t i = 0; i < 100; ++i) { queue.push(exemplar); } utils::NativeParallelFor(nthread, TestQueueElements(queue, nthread)); } void TestQueueWorksWithPrimitiveTypes() { TestPrimitiveTypes, char>(MaxThread, (char)1); TestPrimitiveTypes, int>(MaxThread, (int)-12); TestPrimitiveTypes, float>(MaxThread, (float)-1.2f); TestPrimitiveTypes, double>(MaxThread, (double)-4.3); TestPrimitiveTypes, char>(MaxThread, (char)1); TestPrimitiveTypes, int>(MaxThread, (int)-12); TestPrimitiveTypes, float>(MaxThread, (float)-1.2f); TestPrimitiveTypes, double>(MaxThread, (double)-4.3); } #if HAVE_m128 || HAVE_m256 //! Test concurrent queue with vector types /** Type Queue should be a queue of ClassWithSSE/ClassWithAVX. */ template void TestVectorTypes() { Queue q1; for (int i = 0; i < 100; ++i) { // VC8 does not properly align a temporary value; to work around, use explicit variable ClassWithVectorType bar(i); q1.push(bar); } // Copy the queue Queue q2 = q1; // Check that elements of the copy are correct typename Queue::const_iterator ci = q2.unsafe_begin(); for (int i=0; i < 100; ++i ) { CHECK((ci != q2.unsafe_end())); ClassWithVectorType foo = *ci; ClassWithVectorType bar(i); CHECK((*ci == bar)); ++ci; } for (int i = 0; i < 101; ++i) { ClassWithVectorType tmp; bool b = q1.try_pop(tmp); CHECK((b == (i < 100))); ClassWithVectorType bar(i); CHECK((!b || tmp==bar)); } } #endif /* HAVE_m128 || HAVE_m256 */ void TestQueueWorksWithSSE() { #if HAVE_m128 TestVectorTypes >(); TestVectorTypes >(); #endif /* HAVE_m128 */ #if HAVE_m256 if( have_AVX() ) { TestVectorTypes >(); TestVectorTypes >(); } #endif /* HAVE_m256 */ } #if TBB_USE_EXCEPTIONS int rnd_elem = -1; int global_counter = -1; struct throw_element { throw_element() = default; throw_element(const throw_element&) { if (global_counter++ == rnd_elem) { throw std::exception{}; } } throw_element& operator= (const throw_element&) = default; }; template void CopyWithThrowElement() { utils::FastRandom<> rnd(42); Queue source; constexpr size_t queue_size = 100000; for (std::size_t i = 0; i < queue_size; ++i) { source.emplace(); } for (std::size_t i = 0; i < 100; ++i) { global_counter = 0; rnd_elem = rnd.get() % queue_size; REQUIRE_THROWS_AS( [&] { Queue copy(source); utils::suppress_unused_warning(copy); }(), std::exception); } } #endif // TBB_USE_EXCEPTIONS //! Test work with different fypes //! \brief \ref error_guessing TEST_CASE("testing work with different fypes") { TestQueueWorksWithPrimitiveTypes(); } //! Test work with vector types //! \brief \ref error_guessing TEST_CASE("testing vector types") { TestQueueWorksWithSSE(); } #if TBB_USE_EXCEPTIONS //! \brief \ref regression \ref error_guessing TEST_CASE("Test exception in allocation") { using allocator_type = StaticSharedCountingAllocator>; using queue_type = tbb::concurrent_queue; queue_type src_queue; for (int i = 0; i < 100000; ++i) { src_queue.push(i); } allocator_type::set_limits(1); REQUIRE_THROWS_AS( [] { queue_type queue1; queue1.push(1); }(), const std::bad_alloc); for (std::size_t i = 1; i < 1000; ++i) { allocator_type::init_counters(); allocator_type::set_limits(1); REQUIRE_THROWS_AS( [&] { queue_type queue2(src_queue); utils::suppress_unused_warning(queue2); }(), const std::bad_alloc); } } //! \brief \ref regression \ref error_guessing TEST_CASE("Test exception in allocation") { CopyWithThrowElement>(); CopyWithThrowElement>(); } #endif // TBB_USE_EXCEPTIONS