Module: Barnes::Instruments::Timepiece
- Defined in:
- lib/barnes/instruments/stopwatch.rb
Class Method Summary collapse
-
.cpu ⇒ Object
ruby-prof installed.
- .wall ⇒ Object
Class Method Details
.cpu ⇒ Object
ruby-prof installed
82 83 84 |
# File 'lib/barnes/instruments/stopwatch.rb', line 82 def self.cpu Process.clock_gettime Process::CLOCK_PROCESS_CPUTIME_ID, :float_millisecond end |
.wall ⇒ Object
70 71 72 |
# File 'lib/barnes/instruments/stopwatch.rb', line 70 def self.wall ::Time.now.to_f * 1000 end |