Home
last modified time | relevance | path

Searched refs:pq_type (Results 1 – 12 of 12) sorted by relevance

/dports/devel/stxxl/stxxl-1.4.1/tools/
H A Dbenchmark_pqueue.cpp219 typedef typename gen::result pq_type; in do_benchmark_pqueue() typedef
226 STXXL_MSG("block size: " << pq_type::BlockSize); in do_benchmark_pqueue()
227 STXXL_MSG("insertion buffer size (N): " << pq_type::N << " items (" in do_benchmark_pqueue()
229 STXXL_MSG("delete buffer size: " << pq_type::delete_buffer_size); in do_benchmark_pqueue()
230 STXXL_MSG("maximal arity for internal mergers (AI): " << pq_type::IntKMAX); in do_benchmark_pqueue()
232 STXXL_MSG("internal groups: " << pq_type::num_int_groups); in do_benchmark_pqueue()
233 STXXL_MSG("external groups: " << pq_type::num_ext_groups); in do_benchmark_pqueue()
244 run_pqueue_insert_delete<pq_type>(nelements, mem_for_pools); in do_benchmark_pqueue()
245 run_pqueue_insert_intermixed<pq_type>(nelements, mem_for_pools); in do_benchmark_pqueue()
248 run_pqueue_insert_delete<pq_type>(nelements, mem_for_pools); in do_benchmark_pqueue()
[all …]
/dports/devel/stxxl/stxxl-1.4.1/tools/benchmarks/
H A Dmonotonic_pq.cpp203 > pq_type; in main() typedef
225 > pq_type; in main() typedef
229 typedef gen::result pq_type; in main() typedef
243 STXXL_MSG("Internal arity: " << pq_type::IntKMAX); in main()
244 STXXL_MSG("N : " << pq_type::N); //X / (AI * AI) in main()
245 STXXL_MSG("External arity: " << pq_type::ExtKMAX); in main()
246 STXXL_MSG("Block size B: " << pq_type::BlockSize); in main()
256 pq_type p(mem_for_pools / 2, mem_for_pools / 2); in main()
261 …ents to contain: " << (stxxl::uint64(pq_type::N) * pq_type::IntKMAX * pq_type::IntKMAX * pq_type::… in main()
H A Dpq_benchmark.cpp82 PQ_MEM_SIZE, MAX_ELEMENTS / (1024 / 8)>::result pq_type; typedef
84 typedef pq_type::block_type block_type;
104 pq_type PQ(PREFETCH_POOL_SIZE, WRITE_POOL_SIZE); in run_stxxl_insert_all_delete_all()
163 pq_type PQ(PREFETCH_POOL_SIZE, WRITE_POOL_SIZE); in run_stxxl_intermixed()
/dports/devel/stxxl/stxxl-1.4.1/tests/containers/
H A Dtest_pqueue.cpp75 typedef gen::result pq_type; in main() typedef
76 typedef pq_type::block_type block_type; in main()
89 pq_type p(pool); in main()
106 pq_type p1(pool); in main()
H A Dtest_ext_merger2.cpp72 …PRIORITY_QUEUE_GENERATOR<my_type, my_cmp, mem_for_queue, volume / sizeof(my_type)>::result pq_type; in main() typedef
73 pq_type pq(mem_for_queue, mem_for_queue); in main()
/dports/devel/stxxl/stxxl-1.4.1/examples/containers/
H A Dpqueue2.cpp29 typedef stxxl::PRIORITY_QUEUE_GENERATOR<int, Cmp, 64*1024*1024, 1024*1024>::result pq_type; in main() typedef
30 typedef pq_type::block_type block_type; in main()
37 pq_type Q(pool); in main()
/dports/math/piranha/piranha-0.11/tests/
H A Dpolynomial_03.cpp200 using pq_type = polynomial<rational, Key>;
234 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a), pq_type(tmp)).second.size(), 0u);
235 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b), pq_type(tmp)).second.size(), 0u);
248 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a * b), pq_type(tmp)).second.size(), 0u);
249 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b), pq_type(tmp)).second.size(), 0u);
254 … BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a * b * b), pq_type(tmp)).second.size(), 0u);
255 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b * a), pq_type(tmp)).second.size(), 0u);
H A Dpolynomial_04.cpp88 using pq_type = polynomial<rational, Key>;
90 pq_type xq{"x"}, yq{"y"}, zq{"z"};
111 BOOST_CHECK_EQUAL(pq_type{12} / pq_type{-11}, -12 / 11_q);
124 BOOST_CHECK_EQUAL(xq / pq_type{2}, xq / 2);
189 BOOST_CHECK(is_divisible<pq_type>::value);
191 BOOST_CHECK(is_divisible_in_place<pq_type>::value);
193 BOOST_CHECK((!is_divisible_in_place<pq_type const, pq_type>::value));
195 BOOST_CHECK(has_exact_division<pq_type>::value); in operator ()()
197 BOOST_CHECK(has_exact_ring_operations<pq_type>::value);
/dports/math/py-piranha/piranha-0.11/tests/
H A Dpolynomial_03.cpp200 using pq_type = polynomial<rational, Key>; in operator ()() typedef
234 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a), pq_type(tmp)).second.size(), 0u); in operator ()()
235 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b), pq_type(tmp)).second.size(), 0u); in operator ()()
248 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a * b), pq_type(tmp)).second.size(), 0u); in operator ()()
249 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b), pq_type(tmp)).second.size(), 0u); in operator ()()
254 … BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(a * b * b), pq_type(tmp)).second.size(), 0u); in operator ()()
255 BOOST_CHECK_EQUAL(pq_type::udivrem(pq_type(b * a), pq_type(tmp)).second.size(), 0u); in operator ()()
H A Dpolynomial_04.cpp88 using pq_type = polynomial<rational, Key>; in operator ()() typedef
90 pq_type xq{"x"}, yq{"y"}, zq{"z"}; in operator ()()
111 BOOST_CHECK_EQUAL(pq_type{12} / pq_type{-11}, -12 / 11_q); in operator ()()
124 BOOST_CHECK_EQUAL(xq / pq_type{2}, xq / 2); in operator ()()
189 BOOST_CHECK(is_divisible<pq_type>::value); in operator ()()
191 BOOST_CHECK(is_divisible_in_place<pq_type>::value); in operator ()()
193 BOOST_CHECK((!is_divisible_in_place<pq_type const, pq_type>::value)); in operator ()()
195 BOOST_CHECK(has_exact_division<pq_type>::value); in operator ()()
197 BOOST_CHECK(has_exact_ring_operations<pq_type>::value); in operator ()()
/dports/misc/thrill/thrill-12c5b59bca66df93b66628b3829027bd0f110dd9/extlib/tlx/tests/container/
H A Dradix_heap_test.cpp418 using pq_type = std::pair<KeyType, payload_type>; in random_inout() typedef
419 std::priority_queue<pq_type, in random_inout()
420 std::vector<pq_type>, in random_inout()
421 std::greater<pq_type> > pq; in random_inout()
519 using pq_type = std::pair<KeyType, payload_type>; in random_inout_pair() typedef
520 std::priority_queue<pq_type, std::vector<pq_type>, std::greater<pq_type> > pq; in random_inout_pair()
/dports/devel/tlx/tlx-0.5.20200222-5-g8982a9d/tests/container/
H A Dradix_heap_test.cpp418 using pq_type = std::pair<KeyType, payload_type>; in random_inout() typedef
419 std::priority_queue<pq_type, in random_inout()
420 std::vector<pq_type>, in random_inout()
421 std::greater<pq_type> > pq; in random_inout()
519 using pq_type = std::pair<KeyType, payload_type>; in random_inout_pair() typedef
520 std::priority_queue<pq_type, std::vector<pq_type>, std::greater<pq_type> > pq; in random_inout_pair()