1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
require File.expand_path(File.join(File.dirname(__FILE__), "bench_helper"))
module LibTest
extend FFI::Library
ffi_lib LIBTEST_PATH
attach_function :bench, :bench_P_v, [ :buffer_in ], :void, :save_errno => false
end
puts "Benchmark [ :buffer_in ], :void performance, #{ITER}x calls"
ptr = FFI::MemoryPointer.new :int
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(ptr) }
}
}
puts "Benchmark [ :buffer_in ], :void performance (nil param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(nil) }
}
}
puts "Benchmark [ :buffer_in ], :void performance (Buffer param), #{ITER}x calls"
ptr = FFI::Buffer.new :int
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(ptr) }
}
}
puts "Benchmark [ :buffer_in ], :void performance (const String param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench('test') }
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated Buffer param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(FFI::Buffer.new(4)) }
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated String param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(String.new) }
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated MemoryPointer param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
ITER.times { LibTest.bench(FFI::MemoryPointer.new(4)) }
}
}
|