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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
require_relative 'bench_helper'
module BenchPrV
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 (pre allocated pointer), #{ITER}x calls"
ptr = FFI::MemoryPointer.new :int
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (nil param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(nil)
LibTest.bench(nil)
LibTest.bench(nil)
LibTest.bench(nil)
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (pre allocated Buffer param), #{ITER}x calls"
ptr = FFI::Buffer.new :int
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (const String param), #{ITER}x calls"
ptr = 'test'
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
LibTest.bench(ptr)
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated Buffer param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(FFI::Buffer.new(4))
LibTest.bench(FFI::Buffer.new(4))
LibTest.bench(FFI::Buffer.new(4))
LibTest.bench(FFI::Buffer.new(4))
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated String param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(String.new)
LibTest.bench(String.new)
LibTest.bench(String.new)
LibTest.bench(String.new)
i += 4
end
}
}
puts "Benchmark [ :buffer_in ], :void performance (loop-allocated MemoryPointer param), #{ITER}x calls"
10.times {
puts Benchmark.measure {
i = 0; while i < ITER
LibTest.bench(FFI::MemoryPointer.new(4))
LibTest.bench(FFI::MemoryPointer.new(4))
LibTest.bench(FFI::MemoryPointer.new(4))
LibTest.bench(FFI::MemoryPointer.new(4))
i += 4
end
}
}
end
|