use name asymmetric_coroutine in perfromance test
This commit is contained in:
parent
1fbed2d0c3
commit
81671f503e
@ -19,7 +19,7 @@
|
||||
#include "../preallocated_stack_allocator.hpp"
|
||||
|
||||
typedef preallocated_stack_allocator stack_allocator;
|
||||
typedef boost::coroutines::coroutine< void, stack_allocator > coro_type;
|
||||
typedef boost::coroutines::asymmetric_coroutine< void, stack_allocator > coro_type;
|
||||
|
||||
boost::coroutines::flag_fpu_t preserve_fpu = boost::coroutines::fpu_not_preserved;
|
||||
boost::coroutines::flag_unwind_t unwind_stack = boost::coroutines::stack_unwind;
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "../cycle.hpp"
|
||||
|
||||
typedef boost::coroutines::protected_stack_allocator stack_allocator;
|
||||
typedef boost::coroutines::coroutine< void, stack_allocator > coro_type;
|
||||
typedef boost::coroutines::asymmetric_coroutine< void, stack_allocator > coro_type;
|
||||
|
||||
boost::coroutines::flag_fpu_t preserve_fpu = boost::coroutines::fpu_not_preserved;
|
||||
boost::coroutines::flag_unwind_t unwind_stack = boost::coroutines::stack_unwind;
|
||||
|
@ -18,7 +18,7 @@
|
||||
#include "../cycle.hpp"
|
||||
|
||||
typedef boost::coroutines::standard_stack_allocator stack_allocator;
|
||||
typedef boost::coroutines::coroutine< void, stack_allocator > coro_type;
|
||||
typedef boost::coroutines::asymmetric_coroutine< void, stack_allocator > coro_type;
|
||||
|
||||
boost::coroutines::flag_fpu_t preserve_fpu = boost::coroutines::fpu_not_preserved;
|
||||
boost::coroutines::flag_unwind_t unwind_stack = boost::coroutines::stack_unwind;
|
||||
|
@ -32,20 +32,20 @@ struct X
|
||||
|
||||
const X x("abc");
|
||||
|
||||
void fn_void( boost::coroutines::coroutine< void >::push_type & c)
|
||||
void fn_void( boost::coroutines::asymmetric_coroutine< void >::push_type & c)
|
||||
{ while ( true) c(); }
|
||||
|
||||
void fn_int( boost::coroutines::coroutine< int >::push_type & c)
|
||||
void fn_int( boost::coroutines::asymmetric_coroutine< int >::push_type & c)
|
||||
{ while ( true) c( 7); }
|
||||
|
||||
void fn_x( boost::coroutines::coroutine< X >::push_type & c)
|
||||
void fn_x( boost::coroutines::asymmetric_coroutine< X >::push_type & c)
|
||||
{
|
||||
while ( true) c( x);
|
||||
}
|
||||
|
||||
duration_type measure_time_void()
|
||||
{
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn_void, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn_void, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
@ -64,7 +64,7 @@ duration_type measure_time_void()
|
||||
|
||||
duration_type measure_time_int()
|
||||
{
|
||||
boost::coroutines::coroutine< int >::pull_type c( fn_int, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< int >::pull_type c( fn_int, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
@ -83,7 +83,7 @@ duration_type measure_time_int()
|
||||
|
||||
duration_type measure_time_x()
|
||||
{
|
||||
boost::coroutines::coroutine< X >::pull_type c( fn_x, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< X >::pull_type c( fn_x, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
@ -103,7 +103,7 @@ duration_type measure_time_x()
|
||||
# ifdef BOOST_CONTEXT_CYCLE
|
||||
cycle_type measure_cycles_void()
|
||||
{
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn_void, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn_void, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
@ -122,7 +122,7 @@ cycle_type measure_cycles_void()
|
||||
|
||||
cycle_type measure_cycles_int()
|
||||
{
|
||||
boost::coroutines::coroutine< int >::pull_type c( fn_int, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< int >::pull_type c( fn_int, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
@ -141,7 +141,7 @@ cycle_type measure_cycles_int()
|
||||
|
||||
cycle_type measure_cycles_x()
|
||||
{
|
||||
boost::coroutines::coroutine< X >::pull_type c( fn_x, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< X >::pull_type c( fn_x, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
// cache warum-up
|
||||
c();
|
||||
|
@ -20,17 +20,17 @@
|
||||
boost::coroutines::flag_fpu_t preserve_fpu = boost::coroutines::fpu_not_preserved;
|
||||
boost::uint64_t jobs = 1000;
|
||||
|
||||
void fn( boost::coroutines::coroutine< void >::push_type & c)
|
||||
void fn( boost::coroutines::asymmetric_coroutine< void >::push_type & c)
|
||||
{ while ( true) c(); }
|
||||
|
||||
duration_type measure_time()
|
||||
{
|
||||
// cache warum-up
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
time_point_type start( clock_type::now() );
|
||||
for ( std::size_t i = 0; i < jobs; ++i) {
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
}
|
||||
duration_type total = clock_type::now() - start;
|
||||
total -= overhead_clock(); // overhead of measurement
|
||||
@ -43,11 +43,11 @@ duration_type measure_time()
|
||||
cycle_type measure_cycles()
|
||||
{
|
||||
// cache warum-up
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
|
||||
cycle_type start( cycles() );
|
||||
for ( std::size_t i = 0; i < jobs; ++i) {
|
||||
boost::coroutines::coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
boost::coroutines::asymmetric_coroutine< void >::pull_type c( fn, boost::coroutines::attributes( preserve_fpu) );
|
||||
}
|
||||
cycle_type total = cycles() - start;
|
||||
total -= overhead_cycle(); // overhead of measurement
|
||||
|
Loading…
Reference in New Issue
Block a user