Class: ServerScripts::Parser::VTune::Hotspots::Base
- Inherits:
-
Object
- Object
- ServerScripts::Parser::VTune::Hotspots::Base
- Defined in:
- lib/server_scripts/parser/vtune/hotspots/base.rb
Direct Known Subclasses
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
-
#initialize(fname) ⇒ Base
constructor
A new instance of Base.
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 |