Class: ServerScripts::Parser::VTune::Hotspots::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/server_scripts/parser/vtune/hotspots/base.rb

Direct Known Subclasses

Threads

Constant Summary collapse

CPU_TIME =
"CPU Time"
CPU_EFFECTIVE_TIME =
"CPU Time:Effective Time"
CPU_OVERHEAD_TIME =
"CPU Time:Overhead Time"
CPU_SPIN_TIME =
"CPU Time:Spin Time"
MPI_BUSY_WAIT_TIME =
"CPU Time:Spin Time:MPI Busy Wait Time"
WAIT_TIME =
"Wait Time"

Instance Method Summary collapse

Constructor Details

#initialize(fname) ⇒ Base

Returns a new instance of Base.



13
14
15
16
# File 'lib/server_scripts/parser/vtune/hotspots/base.rb', line 13

def initialize fname
  @threads = {}
  parse_csv! fname
end