• Home
  • Raw
  • Download

Lines Matching full:instrument

55 …caleFactor>(InstrumentType::WALL_CLOCK_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument…  in Framework()
57Instrument::make_instrument<WallClockTimestamps, ScaleFactor::TIME_MS>); in Framework()
59Instrument::make_instrument<WallClockTimestamps, ScaleFactor::TIME_S>); in Framework()
60 …pe, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
61 … ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument… in Framework()
62 …, ScaleFactor>(InstrumentType::WALL_CLOCK_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument… in Framework()
63 …ScaleFactor>(InstrumentType::SCHEDULER_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
65Instrument::make_instrument<SchedulerTimestamps, ScaleFactor::TIME_MS>); in Framework()
67Instrument::make_instrument<SchedulerTimestamps, ScaleFactor::TIME_S>); in Framework()
68 …ype, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
69 …, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument… in Framework()
70 …e, ScaleFactor>(InstrumentType::SCHEDULER_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument… in Framework()
72 …<InstrumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
73 …trumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::SCALE_1K), Instrument::make_instrument… in Framework()
74 …trumentType, ScaleFactor>(InstrumentType::PMU, ScaleFactor::SCALE_1M), Instrument::make_instrument… in Framework()
77 …InstrumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
78 …rumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::SCALE_1K), Instrument::make_instrument… in Framework()
79 …rumentType, ScaleFactor>(InstrumentType::MALI, ScaleFactor::SCALE_1M), Instrument::make_instrument… in Framework()
82 …e, ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
83 …ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_US), Instrument::make_instrument… in Framework()
84 …ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_MS), Instrument::make_instrument… in Framework()
85 … ScaleFactor>(InstrumentType::OPENCL_TIMESTAMPS, ScaleFactor::TIME_S), Instrument::make_instrument… in Framework()
86 …ntType, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
87 …ype, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_US), Instrument::make_instrument… in Framework()
88 …ype, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_MS), Instrument::make_instrument… in Framework()
89 …Type, ScaleFactor>(InstrumentType::OPENCL_TIMER, ScaleFactor::TIME_S), Instrument::make_instrument… in Framework()
90 … ScaleFactor>(InstrumentType::OPENCL_MEMORY_USAGE, ScaleFactor::NONE), Instrument::make_instrument… in Framework()
92Instrument::make_instrument<OpenCLMemoryUsage, ScaleFactor::SCALE_1K>); in Framework()
94Instrument::make_instrument<OpenCLMemoryUsage, ScaleFactor::SCALE_1M>); in Framework()
104 for(const auto &instrument : _available_instruments) in available_instruments() local
106 types.emplace(instrument.first); in available_instruments()
652 auto is_selected = [&](InstrumentsDescription instrument) -> bool in get_profiler()
656 return (group == instrument.first) && (instrument.second == type.second); in get_profiler()
661 for(const auto &instrument : _available_instruments) in get_profiler() local
663 if(all_instruments || is_selected(instrument.first)) in get_profiler()
665 profiler.add(instrument.second()); in get_profiler()