File: bench_gettimeofday.rb

package info (click to toggle)
ruby-ffi 1.12.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,652 kB
  • sloc: ruby: 8,078; ansic: 7,157; xml: 151; sh: 51; makefile: 14
file content (53 lines) | stat: -rw-r--r-- 1,533 bytes parent folder | download
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
require_relative 'bench_helper'

module BenchGettimeofday
  module Posix
    extend FFI::Library
    ffi_lib FFI::Library::LIBC

    attach_function :gettimeofday, [ :buffer_out, :pointer ], :int
  end
  class Timeval < FFI::Struct
    layout :tv_sec, :ulong, :tv_nsec, :ulong
  end

  iter = ITER
  puts "Benchmark FFI gettimeofday(2) (nil, nil) performance, #{iter}x"

  10.times {
    puts Benchmark.measure {
      iter.times { Posix.gettimeofday(nil, nil) }
    }
  }
  puts "Benchmark FFI gettimeofday(2) (Timeval.alloc_out, nil) performance, #{iter}x"
  10.times {
    puts Benchmark.measure {
      iter.times { Posix.gettimeofday(Timeval.alloc_out, nil) }
    }
  }
  puts "Benchmark FFI gettimeofday(2) (Timeval.new(FFI::MemoryPointer.new), nil) performance, #{iter}x"
  10.times {
    puts Benchmark.measure {
      iter.times { Posix.gettimeofday(Timeval.new(FFI::MemoryPointer.new(Timeval)), nil) }
    }
  }
  puts "Benchmark FFI gettimeofday(2) (Timeval.new(FFI::Buffer.new), nil) performance, #{iter}x"
  10.times {
    puts Benchmark.measure {
      iter.times { Posix.gettimeofday(Timeval.new(FFI::Buffer.new(Timeval)), nil) }
    }
  }
  puts "Benchmark FFI gettimeofday(2) (pre allocated pointer, nil) performance, #{iter}x"
  10.times {
    t = Timeval.new FFI::MemoryPointer.new(Timeval)
    puts Benchmark.measure {
      iter.times { Posix.gettimeofday(t, nil) }
    }
  }
  puts "Benchmark Time.now performance, #{iter}x"
  10.times {
    puts Benchmark.measure {
      iter.times { Time.now }
    }
  }
end